gpt4 book ai didi

java - 当软键盘出现时,使用 Recycler View 调整布局大小

转载 作者:行者123 更新时间:2023-12-01 17:26:17 24 4
gpt4 key购买 nike

我有一个布局,其中包含回收器 View 、工具栏和布局底部的编辑文本。我想在软键盘出现时调整回收器 View 的大小。工具栏应保留在顶部,编辑文本应向上移动键盘。仅应调整回收器 View 的大小。

布局代码如下

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:orientation="vertical"
android:background="#ffffff">
<androidx.appcompat.widget.Toolbar
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="#fff"
android:elevation="4dp"
app:title="Toolbar" />

<androidx.recyclerview.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#ffffff"
android:gravity="center"
android:orientation="horizontal"
android:padding="8dp">
<EditText
android:layout_width="0dp"
android:layout_height="45dp"
android:layout_gravity="center_vertical"
android:layout_weight="1"
android:backgroundTint="#757575"
android:textCursorDrawable="@drawable/cursor_color"
android:textSize="16sp" />
</LinearLayout>
</LinearLayout>

我正在全屏模式下使用窗口。目前的情况是,当软键盘出现时,整个布局向上推,工具栏不可见,只有部分回收器 View 可见。

谢谢!

最佳答案

android:windowSoftInputMode="adjustResize"添加到manifest.xml上的activity标签

关于java - 当软键盘出现时,使用 Recycler View 调整布局大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61204899/

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