mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-04 12:24:11 +01:00
247d3a7754
ListView adapter trigger updates on the data.
13 lines
561 B
XML
13 lines
561 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<PreferenceScreen
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<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" />
|
|
</PreferenceScreen>
|