我有如下布局:
<TableLayout 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:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".SettingsActivity" >
<TableRow
...
</TableRow>
<TableRow
...
</TableRow>
<TableRow
android:id="@+id/tableRow3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Temperature:" />
<SeekBar
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</TableRow>
在第三个TableRow
中,TextView
和SeekBar
共享空间。我希望它的TextView
宽度与其中的文本一样宽,并且SeekBar
应该填充其余的空间。我试过摆弄重力、宽度和重量。获得这种行为的最佳方法是什么?