在聊天应用程序中反向RecyclerView项目(底部的第一项)

时间:2017-07-06 06:35:59

标签: android-recyclerview

我想实现一个聊天应用程序我想要的是当我发送它应该在最后显示的消息时....就像聊天应用程序一样。

<android.support.v7.widget.RecyclerView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:stackFromBottom="true"/>

javaclass.xml

layoutManager.setOrientation(LinearLayoutManager.VERTICAL);
layoutManager.setStackFromEnd(true);

1 个答案:

答案 0 :(得分:1)

在java类中添加此代码。

layoutManager.setOrientation(LinearLayoutManager.VERTICAL);
layoutManager.setStackFromEnd(true);
layoutManager.setSmoothScrollbarEnabled(true);
layoutManager.setReverseLayout(true);