gpt4 book ai didi

android - Android 中的编辑文本

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

我有编辑文本和编辑文本下方的按钮。edittext 的宽度为 fill_parent,高度为 wrap_content。

我的消息覆盖全屏,因此我的按钮不可见,它隐藏在虚拟键盘下方

谁能解决这个问题。谢谢。

alt text alt text

最佳答案

我在与 Andrew 的解决方案类似但不完全相同的方面取得了最大的成功:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<EditText
android:id="@+id/myedittext"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1" />
<Button
android:id="@+id/mybutton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
android:text="this is my button"/>
</LinearLayout>

关于android - Android 中的编辑文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3892049/

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