文本框高度太大

时间:2012-10-14 14:20:21

标签: java android xml

请查看以下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(附) enter image description here

正如您所看到的,文本框高度意外地过高。实际上我需要的是调整文本框宽度以适合应用程序,提供足够的空间来键入(如果我没有做任何事情,文本框的宽度看起来非常小)。我是android的新手。请帮忙!

5 个答案:

答案 0 :(得分:1)

当您删除此行android:layout_height="0dp"

时,是否会解决问题

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

答案 1 :(得分:1)

将您的EditText更改为此

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

答案 2 :(得分:1)

要展开宽度以匹配设备的宽度,请将android:layout_width="wrap_content"替换为android:layout_width="match_parent",或者您可以使用dp指定宽度。

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

答案 3 :(得分:0)

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

答案 4 :(得分:0)

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