1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-01 09:24:10 +01:00
LibrePilot/androidgcs/res/xml/preferences.xml

16 lines
822 B
XML

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory android:title="Connection Settings">
<CheckBoxPreference android:title="@string/preference_checkbox_autoconnect"
android:key="autoconnect" />
<ListPreference android:title="@string/preference_checkbox_connection_type"
android:key="connection_type" android:summary="@string/preference_connection_method_summary"
android:defaultValue="None" android:entries="@array/connectTypeArray"
android:entryValues="@array/connectTypeValues" />
<EditTextPreference android:name="ip_address"
android:summary="Enter a TCP/IP address here"
android:defaultValue="192.168.0.1" android:title="IP address:"
android:key="ip_address" />
</PreferenceCategory>
</PreferenceScreen>