我在RecyclerView
中有一个EditText
和一个CardView
。活动的目的是聊天。因此RecyclerView
包含所有已发送和接收的消息,而CardView
是用户键入消息的位置。出现问题时,我需要在键盘弹出时将内容上移。现在,这似乎不是一个简单的问题。
我尝试了所有这些问题:
Push up content when clicking in edit text
How to move the layout up when the soft keyboard is shown android
Move layouts up when soft keyboard is shown?
而且,大多数解决方案归结为更改android:windowSoftInputMode
。我尝试过,切换到adjustPan
和adjustResize
。这是我的活动的代码:
<?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"
android:background="#F0F0F0"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:paddingStart="10dp"
android:paddingEnd="10dp"
tools:context="com.devpost.airway.MainActivity">
<android.support.v7.widget.RecyclerView
android:id="@+id/chatView"
android:layout_width="match_parent"
android:layout_height="match_parent">
</android.support.v7.widget.RecyclerView>
<android.support.v7.widget.CardView
android:layout_alignParentBottom="true"
android:layout_marginTop="10dp"
app:cardElevation="0dp"
app:cardCornerRadius="10dp"
android:layout_marginBottom="10dp"
android:layout_width="match_parent"
android:layout_height="50dp">
<EditText
android:id="@+id/chat_input"
android:paddingStart="2dp"
android:paddingEnd="2dp"
android:inputType="text"
android:imeOptions="actionSend"
android:background="@null"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</android.support.v7.widget.CardView>
</RelativeLayout>
adjustPan
的工作方式非常模糊,我在下面添加了屏幕截图,请看一下:图像1
影像2
现在,从Image-1和Image-2可以清楚地看到几个问题:
ActionBar
向上移动。当键盘弹出时,它会添加过渡动画
它将整个RecyclerView向上推
因此,问题是:
除了允许
android:windowSoftInputMode
更改其首选方式之外,是否可以手动覆盖任何方法并自行实现事情?请帮助。 最佳答案
<android.support.v7.widget.RecyclerView
android:id="@+id/chatView"
android:layout_width="match_parent"
android:layout_above="@+id/editorCard"
android:layout_height="wrap_content" />
<android.support.v7.widget.CardView
android:id="@+id/editorCard"
android:layout_alignParentBottom="true"
android:layout_marginTop="10dp"
app:cardElevation="0dp"
app:cardCornerRadius="10dp"
android:layout_marginBottom="10dp"
android:layout_width="match_parent"
android:layout_height="50dp">
<!--your editor code-->
</android.support.v7.widget.CardView>
wrap_content
和layout_above
是所需行为的关键更改并在
softinputmethod
中将其设置为adjustPan|adjustResize