gpt4 book ai didi

Android:当按钮打开时如何将按钮对齐到键盘的底部和上方?

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:24:27 25 4
gpt4 key购买 nike

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<EditText
android:id="@+id/editTextTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/task_title"
android:ems="10" >

<requestFocus />
</EditText>

<RelativeLayout android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true">
<Button
android:id="@+id/buttonSeven"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="7" />

</RelativeLayout>

尝试对齐屏幕底部的几个按钮。但是,当键盘弹出时,我希望按钮向上移动到键盘上方。如何做到这一点?

最佳答案

在你的 AndroidManifest.xml 中添加这个属性:android:windowSoftInputMode="adjustResize"

<activity 
android:windowSoftInputMode="adjustResize"
android:name="com.example.stackoverflow.SimpleActivity5" >

关于Android:当按钮打开时如何将按钮对齐到键盘的底部和上方?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16837236/

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