2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2024-12-02 15:10:14 +01:00
xash3d-fwgs/res/layout/controls_listview_item.xml
2015-05-19 17:54:29 +01:00

42 lines
1.5 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_toRightOf="@+id/imageView"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/name_textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/binding_textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Medium Text"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="@android:color/tertiary_text_dark" />
</LinearLayout>
<ImageView
android:id="@+id/settings_imageview"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_alignParentRight="true"
android:layout_marginRight="10dp"
android:background="@drawable/cog" />
</RelativeLayout>