如何阻止我的recyclerview重置?

时间:2019-04-12 12:57:30

标签: android android-recyclerview recycler-adapter linearlayoutmanager

我正在开发聊天UI。当我发送消息时,它会正确膨胀。但是,当我发送另一条消息时,新消息将添加到新屏幕的顶部,而不是上一条消息的下方。 另外,当我收到回复时,它会添加到我发送的回复下方。此后,接收或发送的下一条消息将被添加到新屏幕上。如何阻止这种情况发生?

这是我的layout.xml文件:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:paddingTop="8dp">

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/message_list"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/textbox"
        />

    <LinearLayout
        android:id="@+id/textbox"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:orientation="horizontal">

        <EditText
            android:id="@+id/txtMessage"
            android:hint="Enter message"
            android:background="@android:color/transparent"
            android:layout_gravity="center"
            android:layout_marginLeft="16dp"
            android:layout_marginRight="16dp"
            android:layout_width="0dp"
            android:layout_weight="1"
            android:layout_height="wrap_content"
            android:maxLines="6"/>

        <Button
            android:id="@+id/btnSend"
            android:text="SEND"
            android:textSize="14dp"
            android:background="?attr/selectableItemBackground"
            android:clickable="true"
            android:layout_width="64dp"
            android:layout_height="48dp"
            android:gravity="center"
            android:layout_gravity="bottom" />

    </LinearLayout>

</RelativeLayout>

向适配器添加新消息:

String messageString = txtMessage.getText().toString();
        if (messageString.trim().length() > 0) {
            // update the views
            txtMessage.setText("");
            Message message = new Message(messageString);
            message.setDirection(Message.OUTGOING_MESSAGE);
            adapter.addMessage(message);

聊天适配器类:

class ChatAdapter
            extends RecyclerView.Adapter<RecyclerView.ViewHolder> {

        Context context;
        private final List<Message> messages;

        ChatAdapter(Context context, List<Message> messages) {
            this.context = context;
            this.messages = messages;

        }

        public void addMessage(Message message) {
            messages.add(message);
            Log.i("MESSAGE", message.getText());
            adapter.notifyDataSetChanged();
        }

2 个答案:

答案 0 :(得分:0)

尝试使用adapter.notfifyItemInserted代替adapter.notifyDataSetChanged

答案 1 :(得分:0)

1)使您使用此命令:

linearLayoutManager.setStackFromEnd(true);

2)我在ChatAdapter类中看不到您的onBindViewHolder方法,您应该使用它,它肯定会解决您的问题

3)添加消息时,请按照以下步骤操作:

String messageString = txtMessage.getText().toString();
    if (messageString.trim().length() > 0) {
        // update the views
        txtMessage.setText("");
        Message message = new Message(messageString);
        ListOfMessage.add(message);
        adapter.notifyDataSetChanged();