android自定义滚动条(ScrollBar)样式
Posted 丫丫25001
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android自定义滚动条(ScrollBar)样式相关的知识,希望对你有一定的参考价值。
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)
以上是关于android自定义滚动条(ScrollBar)样式的主要内容,如果未能解决你的问题,请参考以下文章