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

221 lines
8.2 KiB
XML

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:minWidth="500dp"
android:orientation="vertical" >
<Button
android:id="@+id/add_remove_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Add/remove buttons" />
<TableLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TableRow
android:id="@+id/tableRow1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Fwd/Back:"
android:textAppearance="?android:attr/textAppearanceLarge" />
<SeekBar
android:id="@+id/fwd_seekbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:max="100" />
</TableRow>
<TableRow
android:id="@+id/tableRow2"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Strafe:"
android:textAppearance="?android:attr/textAppearanceLarge" />
<SeekBar
android:id="@+id/strafe_seekbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:max="100" />
</TableRow>
<TableRow
android:id="@+id/tableRow3"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Look Up/Down:"
android:textAppearance="?android:attr/textAppearanceLarge" />
<SeekBar
android:id="@+id/pitch_seekbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:max="100" />
</TableRow>
<TableRow
android:id="@+id/tableRow4"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Turn:"
android:textAppearance="?android:attr/textAppearanceLarge" />
<SeekBar
android:id="@+id/yaw_seekbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:max="100" />
</TableRow>
<TableRow
android:id="@+id/tableRow5"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Transparency:"
android:textAppearance="?android:attr/textAppearanceLarge" />
<SeekBar
android:id="@+id/alpha_seekbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:max="100" />
</TableRow>
<TableRow>
<CheckBox
android:id="@+id/mouse_turn_checkbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="&apos;Mouse&apos; mode turning" />
</TableRow>
<TableRow>
<CheckBox
android:id="@+id/invert_loop_checkbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Invert Look" />
</TableRow>
<TableRow>
<CheckBox
android:id="@+id/precision_shoot_checkbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Precision Shoot" />
</TableRow>
<TableRow>
<CheckBox
android:id="@+id/show_next_weapon_checkbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Show Next/Prev Weapon" />
</TableRow>
<TableRow>
<CheckBox
android:id="@+id/show_sticks_checkbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Show Movement arrows" />
</TableRow>
<TableRow>
<CheckBox
android:id="@+id/enable_weapon_wheel_checkbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Enable Weapon Wheel" />
</TableRow>
<TableRow>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Double tap Move:"
android:textAppearance="?android:attr/textAppearanceLarge" />
<Spinner
android:id="@+id/move_dbl_tap_spinner"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</TableRow>
<TableRow>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Double tap Look:"
android:textAppearance="?android:attr/textAppearanceLarge" />
<Spinner
android:id="@+id/look_dbl_tap_spinner"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</TableRow>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<Button
android:id="@+id/save_button"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Save" />
<Button
android:id="@+id/cancel_button"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Cancel" />
</LinearLayout>
</TableLayout>
</LinearLayout>
</ScrollView>