RecyclerView stackFromBottom

后端 未结 2 1415
旧巷少年郎
旧巷少年郎 2020-12-06 09:44

I just implemented the new RecyclerView. I want to use it do display user\'s messages(sms).

I read on official documentation that RecyclerView

相关标签:
2条回答
  • 2020-12-06 10:37

    Making it a little explicit:

       final LinearLayoutManager layoutManager = new LinearLayoutManager(mActivity);
       layoutManager.setStackFromEnd(true);
       recyclerView.setLayoutManager(layoutManager);
    
    0 讨论(0)
  • 2020-12-06 10:38

    Thanks to tyczj's comment I figured it out. In RecyclerView instead of stackFromBottom you have to use stackFromEnd https://developer.android.com/reference/android/support/v7/widget/LinearLayoutManager.html#setStackFromEnd(boolean)

    0 讨论(0)
提交回复
热议问题