有没有办法用软键盘向上推动RecyclerView? (聊天)

时间:2019-07-03 11:56:12

标签: java android xml

当用户键入内容并显示软键盘时,我必须保持聊天回收器视图中的当前项目可见。当前,它覆盖了聊天,我需要回收者视图项才能与键盘配合使用。

我在清单中尝试过这些:

-android:windowSoftInputMode="adjustResize"
-android:windowSoftInputMode="adjustPan" 

然后我更改了聊天的XML布局以测试每个windowSoftInputMode:

-底部编辑文本和发送按钮的一个线性布局+回收者视图的一个线性布局,都包裹在一个根线性布局中,将权重属性设置为1用于回收者视图的线性布局,将0属性设置为底部线性布局。

-将两个子线性布局包装在根相对布局中

-将两个子约束布局包装在根约束布局中

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".GroupChatFragment">

    <!-- RECYCLERVIEW CONTAINER -->


    <androidx.constraintlayout.widget.ConstraintLayout
        android:id="@+id/chat_recycler_view_container"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_above="@id/chat_add_message_container"
        android:layout_alignParentTop="true"
        android:orientation="vertical"
        app:layout_constraintBottom_toTopOf="@+id/chat_add_message_container"
        app:layout_constraintTop_toTopOf="parent">

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

    </androidx.constraintlayout.widget.ConstraintLayout>

 <!-- BOTTOM CONTAINER -->

    <androidx.constraintlayout.widget.ConstraintLayout
        android:id="@+id/chat_add_message_container"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        app:layout_constraintBottom_toBottomOf="parent">

        <!-- TEXT MESSAGE EDIT TEXT -->
        <com.google.android.material.textfield.TextInputEditText
            android:id="@+id/message_edit_text"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical"
            android:layout_marginStart="8dp"
            android:layout_marginTop="8dp"
            android:layout_marginEnd="8dp"
            android:layout_marginBottom="8dp"
            android:layout_weight="1"
            android:background="@drawable/rounded_edittext"
            android:hint="Exprimez-vous..."
            android:imeOptions="actionDone"
            android:inputType="textMultiLine"
            android:padding="12dp"
            android:paddingStart="20dp"
            android:paddingEnd="20dp"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toStartOf="@+id/chat_send_button"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent" />

        <!-- ADD MESSAGE BUTTON -->
        <ImageButton
            android:id="@+id/chat_send_button"
            style="@style/Widget.AppCompat.Button.Borderless"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginEnd="8dp"
            android:layout_marginBottom="8dp"
            android:adjustViewBounds="true"
            android:src="@drawable/ic_paper_plane"
            android:tint="@color/blue"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent" />

    </androidx.constraintlayout.widget.ConstraintLayout>

我仍然不知道如何实现这一目标。 这是所有聊天应用程序都在使用的基本功能。

2 个答案:

答案 0 :(得分:0)

尝试这个

View view = inflater.inflate(R.layout.fragment_chat,container,false);     getActivity()。getWindow()。setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);

答案 1 :(得分:0)

在清单活动中设置windowSoftInputMode调整大小

 <activity
        ..
        android:windowSoftInputMode="adjustResize" />