gpt4 book ai didi

java - 文本框高度太大

转载 作者:行者123 更新时间:2023-11-29 05:53:57 25 4
gpt4 key购买 nike

请看下面的 XML 布局

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>

<TextView
android:id="@+id/lblPassword"
android:text="@string/label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>

<EditText
android:id="@+id/pwdText"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="1"
android:inputType="textPassword"
/>


<Button
android:text="@string/btnLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="showMessage"
/>

</LinearLayout>

这会生成以下图形用户界面(已附) enter image description here

如您所见,文本框的高度出乎意料地过高。实际上我需要的是调整文本框的宽度以适本地适应应用程序,提供足够的空间来键入(如果我什么都不做,文本框的宽度会显得非常小)。我是安卓新手。请帮忙!

最佳答案

要扩展宽度以匹配设备的宽度,请将 android:layout_width="wrap_content" 替换为 android:layout_width="match_parent",或者您可以指定一个以 dp 为单位的宽度。

通过设置属性 android:layout_height="0dp"android:layout_weight="1" 你是说你想要这个元素的高度填充所有剩余的空间在屏幕上。

关于java - 文本框高度太大,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12883080/

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