TableRow填充剩余空间

时间:2013-07-31 01:21:17

标签: android android-tablelayout

我有如下布局:

<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 TextViewSeekBar平等分享空间。我希望TextView的内容只与其中的文本一样宽,而SeekBar应该填充剩余的空间。我试过摆弄重力,宽度和重量。获得这种行为的最佳方法是什么?

0 个答案:

没有答案