gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-02 03:34:06 29 4
gpt4 key购买 nike

当用户键入内容并出现软键盘时,我必须保持聊天回收器 View 的当前项目可见。目前,它覆盖了聊天,我需要回收器 View 项目与键盘一起显示。

我在 list 中尝试了这些:

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

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

-底部编辑文本和发送按钮的一个线性布局 + 回收器 View 的一个线性布局,两者都包含在一个根线性布局中,对于回收器 View 线性布局使用设置为 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>

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

最佳答案

试试这个

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

关于java - 有没有办法用软键盘将RecyclerView向上推? (聊天),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56869606/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com