Android自定义滚动条

时间:2013-04-06 09:32:32

标签: android listview scrollbar

我正在开发自定义滚动条。我创建了一个listview:

 <ListView
    android:id="@+id/contact_list_view"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_below="@+id/header_layout"
    android:cacheColorHint="#00000000"
    android:scrollbarThumbVertical="@drawable/clock"
    android:scrollbars="vertical" >
</ListView>

输出:

enter image description here

不期望输出。滚动条图像垂直拉伸。我还想根据listview中的每一行在滚动条图像中显示一些文字

1 个答案:

答案 0 :(得分:2)

https://github.com/rno/Android-ScrollBarPanel

您可以参考此链接。我认为它可能对你有用