RecyclerView - 跳转到位置,然后平滑滚动到顶部

Mit*_*ins 6 android android-recyclerview

我有一个包含50多件物品的RecyclerView.每个项目都包含一个图像(和文本)并填满大部分屏幕.我打电话recyclerView.smoothScrollToPosition(0),但动画需要超过3秒.

如果我打电话recyclerView.scrollToPosition(10),然后recyclerView.smoothScrollToPosition(0)RecyclerView从底部滚动到顶部(忽略"跳转"到位置10的请求).

有什么办法我可以在打电话之前等待"跳" smoothScrollToPosition吗?

Ami*_*oid -1

mAdapter.notifyItemInserted(0);

recyclerView.smoothScrollToPosition(0);