mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-04 12:24:11 +01:00
10 lines
541 B
XML
10 lines
541 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
|
||
|
<PreferenceCategory android:title="Controller Settings">
|
||
|
<ListPreference android:title="Controller Mode"
|
||
|
android:key="controller_type" android:summary="Select whether you want the virtual controller to use mode 1 or mode 2 convention"
|
||
|
android:defaultValue="Mode 1"
|
||
|
android:entries="@array/controllerTypeArray"
|
||
|
android:entryValues="@array/controllerTypeValues"/>
|
||
|
</PreferenceCategory>
|
||
|
</PreferenceScreen>
|