mirror of
https://github.com/AngelAuraMC/Amethyst-Android.git
synced 2026-04-22 18:47:11 -04:00
- Add key combination: Alt, Control, Shift. - Add new special button: middle mouse. - Allow rename a special button.
102 lines
3.0 KiB
XML
102 lines
3.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_height="match_parent"
|
|
android:layout_width="match_parent">
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
android:text="@string/customctrl_keyname"/>
|
|
|
|
<Spinner
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="match_parent"
|
|
android:id="@+id/controlsetting_spinner_lwjglkeycode"/>
|
|
|
|
<TextView
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
android:text="@string/global_name"/>
|
|
|
|
<EditText
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="match_parent"
|
|
android:singleLine="true"
|
|
android:id="@+id/controlsetting_edit_name"/>
|
|
|
|
<CheckBox
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="match_parent"
|
|
android:text="@string/customctrl_hidden"
|
|
android:id="@+id/controlsetting_checkbox_hidden"/>
|
|
|
|
<CheckBox
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="match_parent"
|
|
android:text="@string/customctrl_dynamicpos"
|
|
android:id="@+id/controlsetting_checkbox_dynamicpos"/>
|
|
|
|
<LinearLayout
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="match_parent"
|
|
android:orientation="vertical"
|
|
android:id="@+id/controlsetting_dynamicbtnlayout">
|
|
|
|
<TextView
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
android:text="@string/customctrl_dynamicpos_x"/>
|
|
|
|
<EditText
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="match_parent"
|
|
android:singleLine="true"
|
|
android:id="@+id/controlsetting_edit_dynamicpos_x"/>
|
|
|
|
<TextView
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
android:text="@string/customctrl_dynamicpos_y"/>
|
|
|
|
<EditText
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="match_parent"
|
|
android:singleLine="true"
|
|
android:id="@+id/controlsetting_edit_dynamicpos_y"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
android:text="@string/customctrl_keycombine"/>
|
|
|
|
<CheckBox
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="match_parent"
|
|
android:text="@string/customctrl_keycombine_alt"
|
|
android:id="@+id/controlsetting_checkbox_keycombine_alt"/>
|
|
|
|
<CheckBox
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="match_parent"
|
|
android:text="@string/customctrl_keycombine_control"
|
|
android:id="@+id/controlsetting_checkbox_keycombine_control"/>
|
|
|
|
<CheckBox
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="match_parent"
|
|
android:text="@string/customctrl_keycombine_shift"
|
|
android:id="@+id/controlsetting_checkbox_keycombine_shift"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
|
|