Is there a way to hide scrollbar in ListView
. I know it\'s possible for ScrollView
but can\'t find a way for ListView
scrollbar. Any i
This is the property you should use on your ListView
. All the best.
android:scrollbars="none"
If you want to disable \ enable scrollbars programmatically you need use
View.setVericalScrollbarEnabled(boolean) - disable \ enable vertical scrollbars.
View.setHorizontalScrollBarEnabled(boolean) - disable \ enable horizontal scrollbars.
Also make sure that fast scrolling disabled:
listView.setFastScrollEnabled(false);
Thanks, Rahul
Usually using both of them
android:divider="@null"
android:dividerHeight="0dp"
Try to type this in layout xml file
android:scrollbars="none"
Tutorial is here.
http://developer.android.com/reference/android/view/View.html#attr_android:scrollbars
Hope, it helps you