0

在下面的布局中,EditText(蓝色背景颜色)不可见,它的宽度为 0,并且微调器占据了所有空间。为什么?

<TableRow
    android:layout_width="match_parent"
    android:gravity="center_vertical" >

    <TextView
        style="@style/Label.Plain"
        android:layout_width="fill_parent"
        android:layout_marginTop="3dp"
        android:layout_weight="0"
        android:text="@string/Distance" />

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:orientation="horizontal" >

        <EditText
            android:id="@+id/et_hfDistance"
            android:layout_width="fill_parent"
            android:layout_height="@dimen/button_height"
            android:layout_weight="1"
            android:background="#ff0000ff"
            android:inputType="numberDecimal"
            android:selectAllOnFocus="true"
            android:textSize="@dimen/spinner_text" />

        <Spinner
            android:id="@+id/sp_hfDistanceUnits"
            style="@style/Spinner"
            android:layout_width="fill_parent"
            android:layout_weight="0"
            android:background="#ff00ff00"
            android:padding="0dp" />
    </LinearLayout>
</TableRow>

4

1 回答 1

2

因为您设置了 parent android:layout_width="fill_parent",并且为两个孩子设置了相似的宽度,所以权重被考虑到它们的倒数。

real weight = (1/weight) / sum((1/weight) for weight in the layout)

因此,EditText 的实际权重为 1,而微调器的实际权重为 1/0 = 无限。相比之下,EditText 不再可见,并且微调器占据了所有空间。

要更改此行为,请同时更改微调器和 EditTextandroid:layout_width="0dp"

于 2013-08-21T12:24:38.503 回答