我想实现一个聊天应用程序我想要的是当我发送它应该在最后显示的消息时....就像聊天应用程序一样。
<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);
答案 0 :(得分:1)
在java类中添加此代码。
layoutManager.setOrientation(LinearLayoutManager.VERTICAL);
layoutManager.setStackFromEnd(true);
layoutManager.setSmoothScrollbarEnabled(true);
layoutManager.setReverseLayout(true);