如何在同一行上布置2个TextView(左侧1个,右侧1个)和SeekBar

时间:2009-11-16 22:11:13

标签: android

如何在布局xml文件的同一行上布置2个TextView和SeekBar? 我知道

但是我如何指定TextView(右边​​一个,左边一个)只使用在TextView中显示字符串所需的宽度,而SeekBar将耗尽其余部分?

我不知道开头的每个TextView的文本值,这些TextView可以在我的应用程序中更改值。

     

感谢您的任何建议。

1 个答案:

答案 0 :(得分:3)

最简单的方法可能是使用TableLayout。类似的东西:

<TableLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" 
    android:stretchColumns="1">
    <TableRow>
        <TextView
            android:layout_width ="wrap_content" 
            android:layout_height="wrap_content"
            android:textSize     ="whatever" />
        <SeekBar
            android:layout_width ="fill_parent" 
            android:layout_height="wrap_content" />
        <TextView
            android:layout_width ="wrap_content" 
            android:layout_height="wrap_content"
            android:textSize     ="whatever" />
    </TableRow>
</TableLayout>