我有这个布局:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/stat_brightness_off"
android:layout_toLeftOf="@id/brightnessSeekBar" />
<SeekBar
android:id="@+id/brightnessSeekBar"
android:layout_width="wrap_content"
android:layout_centerHorizontal="true"
android:layout_height="wrap_content" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/brightnessSeekBar"
android:src="@drawable/stat_brightness_on" />
</RelativeLayout>
我需要SeekBar
填充所有未使用的水平空间ImageView
(它们大约为 64*64 像素)。我该怎么办?