Set RelativeLayout Kind füllen den ungenutzten Speicherplatz

Habe ich dieses layout:

<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>

Brauche ich die SeekBar zu füllen, der horizontale Raum, der ungenutzt durch ImageView's (Sie sind über 64*64 px). Was soll ich tun?

InformationsquelleAutor der Frage arts777 | 2012-04-30

Schreibe einen Kommentar