gpt4 book ai didi

当重力设置为 "center"时,Android 键盘重叠编辑文本

转载 作者:行者123 更新时间:2023-11-29 14:15:04 24 4
gpt4 key购买 nike

我只想知道当您将重力设置为“居中”键盘与编辑文本重叠时,您是否已经在编辑文本中遇到过这个问题。希望你能帮我解决这个问题。

我在下面添加了我的代码。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/img_splash"
android:gravity="bottom"
android:orientation="vertical"
android:paddingLeft="20dp"
android:paddingRight="20dp" >

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

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<EditText
android:id="@+id/edit_username"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:layout_marginBottom="13dp"
android:background="@drawable/img_textfield"
android:ems="10"
android:gravity="center_vertical|center_horizontal"
android:hint="Username"
android:imeOptions="actionNext"
android:maxLines="1"
android:singleLine="true"
android:textSize="18sp" />

<EditText
android:id="@+id/edit_password"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:layout_marginBottom="28dp"
android:background="@drawable/img_textfield"
android:ems="10"
android:gravity="center_vertical|center_horizontal"
android:hint="Password"
android:inputType="textPassword"
android:maxLines="1"
android:singleLine="true"
android:textSize="18sp" />
</LinearLayout>
</ScrollView>

<Button
android:id="@+id/button_login"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:layout_marginBottom="75dp"
android:background="@drawable/btn_login"
android:onClick="onClicked"
android:text="Login"
android:textColor="@color/white_pure"
android:textSize="18sp" />

</LinearLayout>

最佳答案

尝试使用

android:windowSoftInputMode="adjustResize|stateHidden" list 中

或者将您的 View 放入 scrollview

Source

关于当重力设置为 "center"时,Android 键盘重叠编辑文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21718498/

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