How to make Listview's Scroll slower?

后端 未结 2 782
庸人自扰
庸人自扰 2021-02-05 09:06

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 probl

2条回答
  •  伪装坚强ぢ
    2021-02-05 09:42

    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);
    

提交回复
热议问题