Android hide listview scrollbar?
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
Hope, it helps you
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.