usar studio que linearlayout layout_below ejemplos constraint como android android-layout android-relativelayout

android - studio - Configura al niño RelativeLayout para que llene el espacio no utilizado



relative layout vs constraint layout (2)

Establecer el diseño de SeekBar:

diseño a la derecha de ImageView1, diseño a la izquierda de ImageView2, luego establezca el ancho para rellenar el padre.

Creo que eso es lo que estás preguntando. También es posible que desee alinear la izquierda de ImageView1 y la derecha de ImageView2.

Tengo este diseño:

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

Necesito la SeekBar de SeekBar para llenar todo el espacio horizontal, no utilizado por ImageView (son aproximadamente 64 * 64 px). ¿Qué tengo que hacer?


Utilice el código que se proporciona a continuación:

<RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent"> <ImageView android:id="@+id/img1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:src="@drawable/stat_brightness_on" /> <SeekBar android:id="@+id/brightnessSeekBar" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:layout_toLeftOf="@id/img2" android:layout_toRightOf="@id/img1" /> <ImageView android:id="@+id/img2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:src="@drawable/stat_brightness_on" /> </RelativeLayout>