Scroll a ListView by pixels in Android

后端 未结 5 1432
隐瞒了意图╮
隐瞒了意图╮ 2021-02-06 08:50

I want to scroll the a ListView in Android by number of pixels. For example I want to scroll the list 10 pixels down (so that the first item on the list has its top

5条回答
  •  面向向阳花
    2021-02-06 09:32

    For now, ListViewCompat is probably a better solution.

    android.support.v4.widget.ListViewCompat.scrollListBy(@NonNull ListView listView, int y)
    

提交回复
热议问题