Android Hide Listview Scrollbar?
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 ideas?
Solution 1:
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
Solution 2:
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.
Solution 3:
This is the property you should use on your ListView
. All the best.
android:scrollbars="none"
Solution 4:
Also make sure that fast scrolling disabled:
listView.setFastScrollEnabled(false);
Thanks, Rahul
Solution 5:
Usually using both of them
android:divider="@null"android:dividerHeight="0dp"
Post a Comment for "Android Hide Listview Scrollbar?"