gpt4 book ai didi

android - 如何移动键盘上方的按钮?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:58:36 26 4
gpt4 key购买 nike

以前有人问过这个问题,但我找不到适合我的好答案。

这是我的 XML 代码(已更新):

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Account Name"
android:textSize="32dp"
android:layout_marginTop="15dp"
android:layout_marginLeft="15dp"
android:id="@+id/textView" />

<EditText
android:layout_width="match_parent"
android:layout_height="40dp"
android:id="@+id/accountName"
android:background="@drawable/edit_text_background"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:padding="10dp"
android:backgroundTint="@color/abc_secondary_text_material_light" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Account Balance"
android:textSize="32dp"
android:layout_marginTop="15dp"
android:layout_marginLeft="15dp"/>

<EditText
android:layout_width="match_parent"
android:layout_height="40dp"
android:inputType="numberDecimal"
android:id="@+id/accountBalance"
android:background="@drawable/edit_text_background"
android:layout_marginRight="15dp"
android:layout_marginLeft="15dp"
android:padding="10dp"
android:backgroundTint="@color/abc_secondary_text_material_light"
android:text="£"
/>


<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:text="New Button"
android:id="@+id/button"
android:layout_gravity="center_horizontal"
android:layout_alignParentBottom="true"
/>

</RelativeLayout>

我试过使用 android:windowSoftInputMode="adjustPan|adjustResize" 但它没有用。

我觉得我在 XML 代码的布局上做错了......看起来像这样,我希望按钮在键盘出现时向上移动:

enter image description here

最佳答案

尝试在父级别使用 ScrollView

<ScrollView
android:id="@+id/login_form"
android:layout_width="match_parent"
android:layout_height="match_parent"
>

关于android - 如何移动键盘上方的按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38052782/

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