2
我在CardView
內有RecyclerView
和EditText
。該活動的目的是聊天。因此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
確實在一個非常模糊的方式工作,我已經添加下面的截圖,請看看:
IMAGE-1
IMAGE-2
現在,顯然從圖片-1和圖像2中,有幾個問題:
- 的
ActionBar
向上移動。 - 當鍵盤彈出它增加了一個過渡動畫
- 它推動了整個RecyclerView了
所以,問題是:
手動是否可以覆蓋任何方法和實施的事情我自己,除了允許android:windowSoftInputMode
改變它喜歡的方式?請幫助。
幾乎沒有進行任何更改,不會做任何事情。 @鋼鐵俠 – OBX