I am trying to slow down the scroll speed in my ListView
.
In my code, I've tried calling these two methods:
listview.setSmoothScrollbarEnabled(true);
listview.setFastScrollEnabled(false);
However, this isn't working. How can I slow down the scrolling speed of my ListView
?