我已经在SO和Google上阅读了很多关于在回收者视图中粘性标题的问题。但是,他们中的大多数都将完整的列表项目放在首位。我只想将我的列表项的一部分放在recyclerview的顶部,直到滚动完整的项目。我已经浏览了一些像this one这样的库,但仍然无法弄清楚如何完成它。任何帮助表示赞赏。
我想粘贴红色框中突出显示的内容,直到滚动完整的列表项(标记为绿色)。
答案 0 :(得分:2)
查看此库
https://github.com/oubowu/PinnedSectionItemDecoration
与此RecyclerView适配器库结合使用:
https://github.com/CymChad/BaseRecyclerViewAdapterHelper
答案 1 :(得分:0)
试试这个!!
这将使所选(项目位置)项目保持在顶视图
recyclerView.setAdapter(adapter);
recyclerView.scrollToPosition(item_posotion);
adapter.notifyDataSetChanged();