当软键盘出现或消失时,Recyclerview向下滚动

时间:2017-10-25 16:12:09

标签: java android android-layout android-recyclerview chat

问题是当软键盘出现或消失时,recyclerview会向下滚动几乎完整的行。

这是一个直观的例子:

enter image description here

活动的布局使用ChatKit UI library中的MessageInput和MessageList对象,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="apps.cal.calchat.ChatActivity.ChatView">

    <TextView
        android:id="@+id/chatIsTypingTextView"
        android:layout_width="match_parent"
        android:layout_marginLeft="8dp"
        android:layout_height="wrap_content"
        android:layout_above="@+id/chatMessageInput"/>

    <com.stfalcon.chatkit.messages.MessageInput
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentRight="true"
        android:id="@+id/chatMessageInput"
        android:layout_width="0dp"
        android:layout_height="wrap_content" />

    <com.stfalcon.chatkit.messages.MessagesList
        android:id="@+id/chatMessagesList"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_above="@+id/chatIsTypingTextView"
        />

</RelativeLayout>

该活动还在清单中设置了adjustPan:

    <activity
        android:name=".ChatActivity.ChatView"
        android:windowSoftInputMode="adjustPan|stateHidden"/>

Recyclerviews线性布局管理器设置为垂直,具有反向布局和默认项目动画师:

public <MESSAGE extends IMessage>
    void setAdapter(MessagesListAdapter<MESSAGE> adapter, boolean reverseLayout) {
        SimpleItemAnimator itemAnimator = new DefaultItemAnimator();
        itemAnimator.setSupportsChangeAnimations(false);

        LinearLayoutManager layoutManager = new LinearLayoutManager(getContext(),
                LinearLayoutManager.VERTICAL, reverseLayout);

        setItemAnimator(itemAnimator);
        setLayoutManager(layoutManager);
        adapter.setLayoutManager(layoutManager);
        adapter.setStyle(messagesListStyle);

        addOnScrollListener(new RecyclerScrollMoreListener(layoutManager, adapter));
        super.setAdapter(adapter);
    }

理想情况下,我不希望设置键盘监听器,并在每次显示/隐藏键盘时以编程方式滚动到底部。看来我必须在某处做错事。有什么想法吗?

1 个答案:

答案 0 :(得分:1)

在实现android ui聊天时,我花了很长时间寻找键盘打开时滚动消息的问题的解决方案。基本上,这些决定是基于在回收站中滚动到键盘的高度,它看起来像拐杖。

事实证明,您只需要几件事
1。不要使用layoutManager.stackFromEnd = true
2。请勿将高0dp的ConstraintLayout用作回收站的父对象
2。请勿将具有wrap_content高度的RelativeLayout用作回收站的父级

设置示例:

        val adapter = MessagesAdapter ()
        val layoutManager = LinearLayoutManager (this, RecyclerView.VERTICAL, true)
        rvMessages.layoutManager = layoutManager
        rvMessages.adapter = adapter

对于布局,您可以将LinearLayout,RelativeLayout或ConstraintLayout与match_parent高度一起使用,并从底部填充到editText高度。

<LinearLayout xmlns: android = "http://schemas.android.com/apk/res/android"
    android: layout_width = "match_parent"
    android: layout_height = "match_parent"
    android: orientation = "vertical">

    <androidx.recyclerview.widget.RecyclerView
        android: id = "@ + id / rvMessages"
        android: layout_width = "match_parent"
        android: layout_height = "0dp"
        android: layout_weight = "1" />

    <EditText
        android: id = "@ + id / etMessage"
        android: layout_width = "match_parent"
        android: layout_height = "wrap_content" />

</LinearLayout>