diff options
| author | sigmabeta <sigmabeta@users.noreply.github.com> | 2015-07-23 21:58:32 -0400 |
|---|---|---|
| committer | sigmabeta <sigmabeta@users.noreply.github.com> | 2015-07-23 22:11:11 -0400 |
| commit | 008ac0eeb09ffb3528b1df875cee9076648b5a5a (patch) | |
| tree | 00b5adc312d1c46cb0d6950e568a33bf9462e477 | |
| parent | a8227ad9b1430d8891f1c6221374dadd94a3a534 (diff) | |
Android: Add UI for Wiimote configuration.
| -rw-r--r-- | Source/Android/app/src/main/res/xml/preferences.xml | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/Source/Android/app/src/main/res/xml/preferences.xml b/Source/Android/app/src/main/res/xml/preferences.xml index c91f77ab96..70352a7acf 100644 --- a/Source/Android/app/src/main/res/xml/preferences.xml +++ b/Source/Android/app/src/main/res/xml/preferences.xml @@ -569,6 +569,89 @@ </PreferenceScreen> </PreferenceScreen> + <!-- Wiimote Bindings --> + <PreferenceScreen + android:key="wiimote_bindings" + android:title="@string/wiimote_bindings"> + + <PreferenceScreen + android:key="wiimote_bindings_0" + android:title="@string/controller_0"> + + <CheckBoxPreference + android:key="enableWiimote1" + android:title="@string/enable_wiimote"/> + + <org.dolphinemu.dolphinemu.utils.InputBindingPreference + android:dependency="enableWiimote1" + android:key="WiimoteA_0" + android:summary="%s" + android:title="@string/button_a"/> + + <org.dolphinemu.dolphinemu.utils.InputBindingPreference + android:dependency="enableWiimote1" + android:key="WiimoteB_0" + android:summary="%s" + android:title="@string/button_b"/> + + <org.dolphinemu.dolphinemu.utils.InputBindingPreference + android:dependency="enableWiimote1" + android:key="WiimoteMinus_0" + android:summary="%s" + android:title="@string/button_minus"/> + + <org.dolphinemu.dolphinemu.utils.InputBindingPreference + android:dependency="enableWiimote1" + android:key="WiimotePlus_0" + android:summary="%s" + android:title="@string/button_plus"/> + + <org.dolphinemu.dolphinemu.utils.InputBindingPreference + android:dependency="enableWiimote1" + android:key="WiimoteHome_0" + android:summary="%s" + android:title="@string/button_home"/> + + <org.dolphinemu.dolphinemu.utils.InputBindingPreference + android:dependency="enableWiimote1" + android:key="Wiimote1_0" + android:summary="%s" + android:title="@string/button_one"/> + + <org.dolphinemu.dolphinemu.utils.InputBindingPreference + android:dependency="enableWiimote1" + android:key="Wiimote2_0" + android:summary="%s" + android:title="@string/button_two"/> + + <org.dolphinemu.dolphinemu.utils.InputBindingPreference + android:dependency="enableWiimote1" + android:key="WiimoteUp_0" + android:summary="%s" + android:title="@string/dpad_up"/> + + <org.dolphinemu.dolphinemu.utils.InputBindingPreference + android:dependency="enableWiimote1" + android:key="WiimoteDown_0" + android:summary="%s" + android:title="@string/dpad_down"/> + + <org.dolphinemu.dolphinemu.utils.InputBindingPreference + android:dependency="enableWiimote1" + android:key="WiimoteLeft_0" + android:summary="%s" + android:title="@string/dpad_left"/> + + <org.dolphinemu.dolphinemu.utils.InputBindingPreference + android:dependency="enableWiimote1" + android:key="WiimoteRight_0" + android:summary="%s" + android:title="@string/dpad_right"/> + + </PreferenceScreen> + + </PreferenceScreen> + </PreferenceCategory> <PreferenceCategory |
