如何在布局xml文件的同一行上布置2个TextView和SeekBar? 我知道
但是我如何指定TextView(右边一个,左边一个)只使用在TextView中显示字符串所需的宽度,而SeekBar将耗尽其余部分?
我不知道开头的每个TextView的文本值,这些TextView可以在我的应用程序中更改值。
感谢您的任何建议。
答案 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>