<LinearLayout android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/tv_label_client_host"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ems="10"
android:text="@string/label_host" />
<EditText
android:id="@+id/et_client_host"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="text"
android:layout_weight="1.0"
android:lines="1" />
</LinearLayout>
我希望EditText
通过水平填充剩余的整个空间,但TextView
获得EditText
可用空间的 1/2。这LinearLayout
是放置在另一个垂直的内部LinearLayout
。