在下面的布局中,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>