Android hide listview scrollbar?

Android-Droid picture Android-Droid · Aug 15, 2011 · Viewed 87.8k times · Source

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?

Answer

ihrupin picture ihrupin · Aug 15, 2011

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