1

请查看以下 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>

这会生成以下 gui(附加) 在此处输入图像描述

如您所见,文本框高度出乎意料地太大了。实际上我需要的是调整文本框宽度以正确适应应用程序,提供足够的输入空间(如果我没有做任何事情,文本框的宽度会显得非常小)。我是安卓新手。请帮忙!

4

5 回答 5

1

当您删除此行时它是否解决了问题android:layout_height="0dp"

编辑:或将其更改为android:layout_height="wrap_content"

于 2012-10-14T14:22:07.900 回答
1

将您的 EditText 更改为此

<EditText
        android:id="@+id/pwdText"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:inputType="textPassword"
        />
于 2012-10-14T14:26:09.410 回答
1

要扩展宽度以匹配设备的宽度,请替换android:layout_width="wrap_content"android:layout_width="match_parent",或者您可以在 dp 中指定宽度。

通过设置属性android:layout_height="0dp"android:layout_weight="1"您说您希望此元素高度填充屏幕上的所有剩余空间。

于 2012-10-14T14:27:52.777 回答
0

不要对最外层布局的宽度或高度使用“match_parent”属性。使用 wrap_content 或 fill_parent。还将editText的layout_height中的0dp替换为wrap_content。

于 2012-10-14T14:25:55.603 回答
0

对于文本视图高度,将其从换行内容更改为 10 dp。

于 2017-09-28T07:32:59.290 回答