mirror of
https://github.com/FWGS/xash3d-fwgs
synced 2024-12-03 23:51:14 +01:00
34 lines
1.1 KiB
XML
34 lines
1.1 KiB
XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="horizontal" >
|
|
|
|
<ImageView
|
|
android:id="@+id/imageView"
|
|
android:layout_width="50dp"
|
|
android:layout_height="50dp"
|
|
android:src="@drawable/joystick" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_toRightOf="@+id/imageView"
|
|
android:orientation="vertical" >
|
|
|
|
<TextView
|
|
android:id="@+id/name_textview"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:text="Large Text"
|
|
android:textAppearance="?android:attr/textAppearanceLarge" />
|
|
</LinearLayout>
|
|
|
|
<ToggleButton
|
|
android:id="@+id/hidden_switch"
|
|
android:layout_width="50dp"
|
|
android:layout_height="50dp"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_marginRight="10dp" />
|
|
|
|
</RelativeLayout> |