我想使用填充整个屏幕的RecyclerView
。我希望用户能够选择项目是从顶部开始(默认情况下是这样)还是从底部开始(反转RecyclerView
的完整逻辑,顺序和函数逻辑!)< / p>
有办法吗?
答案 0 :(得分:9)
是的,使用LinearLayoutManager的这个构造函数:
LinearLayoutManager(Context context, int orientation, boolean reverseLayout)
并将reverseLayout
设置为true
。