gpt4 book ai didi

android - 按钮在 Android 中显示键盘时更改其位置

转载 作者:行者123 更新时间:2023-11-29 21:40:47 25 4
gpt4 key购买 nike

我正在尝试做以下设计

Valid XHTML

我的 XML 代码如下

<?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="fill_parent"
android:layout_gravity="fill_vertical" >

<EditText
android:id="@+id/patientid"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="20dp"
android:layout_marginTop="50dp"
android:layout_toLeftOf="@+id/speak"
android:ems="10"
android:hint="@string/patientidhint" >

<requestFocus />
</EditText>

<Button
android:id="@+id/speak"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/patientid"
android:layout_alignParentRight="true"
android:layout_marginRight="10dp"
android:onClick="speak"
android:text="@string/speak"
tools:context=".CreatingPatientFolder"
/>

<ListView
android:id="@+id/lvTextMatches"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/speak"
android:layout_above="@+id/btn_Submit"/>

<Button
android:id="@+id/btn_Submit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginBottom="50dp"
android:layout_alignParentBottom="true"
android:gravity="center"
android:paddingBottom="10dp"
android:paddingLeft="30dp"
android:paddingRight="30dp"
android:paddingTop="10dp"
android:text="Submit"
android:textSize="20sp"
tools:ignore="HardcodedText" />

</RelativeLayout>

现在当我运行这个项目时,它会显示如下

Valid XHTML

那么谁能告诉我为什么我的按钮向上移动,也请帮我解决这个问题。

最佳答案

我认为按钮被移动的原因是因为你的列表是空的,你有足够的空间来移动按钮并且按钮不在编辑文本下方,因此它可以重叠它。

您的 list 中有一个名为“windowSoftInputMode”的属性。此属性指定软键盘的行为方式。

你可以使用:

android:windowSoftInputMode="stateVisible|adjustNothing

关于android - 按钮在 Android 中显示键盘时更改其位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17167044/

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