Android custom scrollbar

I am working on a custom scrollbar.I created a list like:

<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> 

Output:

enter image description here

Exit is not expected. The image of the scroll bar is vertically stretched. I also want to show the text in the scroll image according to each line in the list.

+4
source share
1 answer

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

You can refer to this link. I think this may be useful for you.

+2
source

All Articles