gpt4 book ai didi

显示键盘时的布局问题

转载 作者:行者123 更新时间:2023-11-29 15:30:00 25 4
gpt4 key购买 nike

这是隐藏软键盘时我的应用 enter image description here但是当显示键盘时,顶部的编辑文本框就消失了(向上推)。 enter image description here它看起来像这样。

我的问题是如何在显示键盘时让两个编辑框都可见?我只想减少编辑框之间的空间...但两个框都可见

到目前为止我的布局是这样的

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="fill_parent" android:layout_width="fill_parent"
android:id="@+id/relativeLayout1">
<EditText android:id="@+id/editText1" android:layout_height="wrap_content"
android:layout_alignParentTop="true" android:layout_width="fill_parent">
<requestFocus></requestFocus>
</EditText>
<EditText android:id="@+id/editText2" android:layout_height="wrap_content"
android:layout_alignParentBottom="true" android:layout_width="fill_parent"></EditText>
<ImageView android:id="@+id/imageView1"
android:layout_height="wrap_content" android:layout_below="@id/editText1"
android:layout_above="@id/editText2" android:background="@drawable/icon"
android:layout_width="fill_parent"></ImageView>
</RelativeLayout>

最佳答案

转到您的 Android list 并将“窗口软输入模式”从移动整个 View 的 adjustPan 更改为 adjustResize,这将为您调整 View 的大小。

关于显示键盘时的布局问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7919043/

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