次のようなレイアウトがあります。
<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>
3 つ目TableRow
では、TextView
とSeekBar
がスペースを均等に共有します。をTextView
その中のテキストと同じ幅にしSeekBar
、残りのスペースを埋める必要があります。重力、幅、重みをいじってみました。この動作を取得する最良の方法は何ですか?