200字范文,内容丰富有趣,生活中的好帮手!
200字范文 > android自定义滚动条(ScrollBar)样式

android自定义滚动条(ScrollBar)样式

时间:2021-12-09 02:20:00

相关推荐

android自定义滚动条(ScrollBar)样式

虽然很少用,但是还是有应用会有自定义ListView,GridView,ScrollView等滚动条样式,这样会使得页面更加融洽美观。

其实自定义样式很简单:

1、如果你的scrollbar是Vertical的,设置以下属性

android:scrollbarThumbVertical="@drawable/scrollbar_indicator"android:scrollbarTrackVertical="@drawable/scrollbar_bg"

2、如果你的scrollbar是horizontal的,设置以下属性

android:scrollbarThumbHorizontal="@drawable/scrollbar_indicator"android:scrollbarTrackHorizontal="@drawable/scrollbar_bg"

android:scrollbarThumbVertical和android:scrollbarThumbHorizontal设置的是滚动条指示器的图片,会跟着滑动而滑动;

android:scrollbarTrackVertical和android:scrollbarTrackHorizontal设置的是滚动条背景。

需要注意的是:

a、属性里面必须是图片,不能直接设置颜色值;

b、指示器会根据item的多少改变高度,因此建议自定义的图片制作成点九(.9)

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。