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
ListView
ScrollView
Also make sure that fast scrolling disabled:
listView.setFastScrollEnabled(false);
Thanks, Rahul