Set Image for Listview ScrollBar Android
Below the code how to set custom image for listview scrollview . I hope it will help ful for you.
Listview scroll bar background image
Below the code how to set custom image for listview scrollview . I hope it will help ful for you.
Listview scroll bar background image
android:scrollbarTrackVertical="@drawable/scrool_bg"
Scroll Image
android:scrollbarThumbVertical="@drawable/scroll"
<ListView
android:id="@+id/item_listView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbarAlwaysDrawVerticalTrack="true"
android:scrollbarTrackVertical="@drawable/scrool_bg"
android:scrollbarThumbVertical="@drawable/scroll"
android:layout_alignParentLeft="true"
android:layout_below="@+id/progressBar" >
</ListView>