Questions tagged «smooth»

11
RecyclerView-如何在特定位置上平滑滚动到项目顶部?
在RecyclerView上,我可以使用以下方法突然滚动到所选项目的顶部: ((LinearLayoutManager) recyclerView.getLayoutManager()).scrollToPositionWithOffset(position, 0); 但是,这突然将项目移动到顶部位置。我想顺利地移到项目的顶部。 我也尝试过: recyclerView.smoothScrollToPosition(position); 但是它不能很好地工作,因为它不能将项目移动到所选的顶部位置。它仅滚动列表,直到该位置上的项目可见为止。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.