1
RecycleView
可以用smoothScrollBy
方法滾動。但是Gridview沒有擴展RecycleView
。如何像RecycleView一樣滾動GridView
?如何在Android中以編程方式水平滾動GridView?
試用gridView.smoothScrollBy(0, dy);
但它沒有任何效果。
RecycleView
可以用smoothScrollBy
方法滾動。但是Gridview沒有擴展RecycleView
。如何像RecycleView一樣滾動GridView
?如何在Android中以編程方式水平滾動GridView?
試用gridView.smoothScrollBy(0, dy);
但它沒有任何效果。
我認爲你正在尋找smoothScrollByOffset(int offset)
。
偏移量 - 要從適配器位置偏移以滾動到的量。您也可以使用smoothScrollToPosition(int position)
。
我不知道需要滾動的位置差異,它有時可以是浮點值。 –