Scroll of my listview is very fast. I want to customize this and want to make it slower. I tried set android:fastscrollenabled="false"
but don't solve this problem.
My device is Samsung Galaxy S2.
Can someone help me? Any help will be greatly appreciated!
Thank in advanced :)
Please use setFriction(float) method of ListView. Because default friction value could differ between devices, it's better to use base value from ViewConfiguration.getScrollFriction()
Example:
setFriction(ViewConfiguration.getScrollFriction() * 2);
check
http://developer.android.com/reference/android/widget/AbsListView.html#setFriction(float)
mListView.setFriction(0.005f);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With