是什么导致我的Android EditText消失

时间:2012-01-26 01:46:46

标签: android android-layout

我一直在尝试创建我认为过去一小时相对简单的布局。

我想要的是在我的按钮和标签放到屏幕上之后,编辑文本占用剩余的垂直空间。我已经在SO找到了很多关于如何做到这一点的信息,我觉得我已经在这里实现了这些信息(layout_weight和0dip height),但是只要我放入0dip高度,我的edittext就不会显示。

我在这里缺少什么?

编辑:原来我的Layout2设置为match_parent,这为加权的孩子占用了0个可用空间。我把那里的行为改为wrap_content,一切都很好。

我的目标是Android 2.3.3

这是我的布局xml

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

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/description"
        android:textAppearance="?android:attr/textAppearanceSmall" />

    <EditText
        android:id="@+id/editText2"
        android:layout_width="match_parent"
        android:layout_height="0dip"
        android:inputType="textMultiLine"
        android:layout_weight="1" >

        <requestFocus />
    </EditText>

    <Spinner
        android:id="@+id/spinner1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

    <LinearLayout
        android:id="@+id/linearLayout2"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <Button
            android:id="@+id/button2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/save" />

        <Button
            android:id="@+id/button1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/clear" />

    </LinearLayout>


</LinearLayout>

1 个答案:

答案 0 :(得分:1)

因为linearLayout2填写了父级。 linearLayout2必须具有layout_weight行为或拥有高度而不是match_parent。