繁体   English   中英

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

[英]Recyclerview scrolls down when soft keyboard appears or disappears

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

这是一个视觉示例:

在此处输入图片说明

活动的布局使用ChatKit UI 库中的 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);
    }

理想情况下,我不想在每次显示/隐藏键盘时设置键盘侦听器并以编程方式滚动到底部。 看来我一定是在某个地方做错了什么。 有什么想法吗?

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

事实证明,你只需要很少的东西
1. 不要使用 layoutManager.stackFromEnd = true
2.不要使用0dp高的ConstraintLayout作为recycler parent
2.不要使用RelativeLayout和wrap_content height作为recycler parent

设置示例:

        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>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM