RecyclerView 使指定item置顶

  • RecyclerView有scrollToPosition方法,但scrollToPosition的作用只是使item在屏幕里可见
  • 正确的方法是用LayoutManager里的scrollToPositionWithOffset;
      mLinearLayoutManager = new LinearLayoutManager(this);
      mRecyclerView.setLayoutManager(mLinearLayoutManager);
      mLinearLayoutManager.scrollToPositionWithOffset(position, 0);
    

此为blog备份,原地址:[http://blog.yzapp.cn/RecyclerView 使指定item置顶.html](http://blog.yzapp.cn/RecyclerView 使指定item置顶.html)

你可能感兴趣的:(RecyclerView 使指定item置顶)