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

49 lines
1.7 KiB
XML

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<CheckBox
android:id="@+id/gamepad_enable_checkbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Enable Game Pad" />
<CheckBox
android:id="@+id/gamepad_hide_touch_checkbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hide Touch Controls" />
<Button
android:id="@+id/gamepad_help_button"
style="@android:style/Animation"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_marginRight="10dp"
android:background="@drawable/help" />
<TextView
android:id="@+id/gamepad_info_textview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="right"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge" />
</LinearLayout>
<ListView
android:id="@+id/gamepad_listview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:dividerHeight="10dp" >
</ListView>
</LinearLayout>