You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.6 KiB
47 lines
1.6 KiB
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<PreferenceCategory app:title="@string/messages_header">
|
|
|
|
<EditTextPreference
|
|
app:key="altitude"
|
|
app:defaultValue="100"
|
|
app:title="@string/signature_title"
|
|
app:useSimpleSummaryProvider="true" />
|
|
|
|
<ListPreference
|
|
app:defaultValue="5"
|
|
app:entries="@array/distance"
|
|
app:entryValues="@array/distance"
|
|
app:key="distance"
|
|
app:title="@string/reply_title"
|
|
app:useSimpleSummaryProvider="true" />
|
|
|
|
<SwitchPreferenceCompat
|
|
app:dependency="sync"
|
|
app:key="attachment"
|
|
app:summaryOff="There are no restriction on flight parameters"
|
|
app:summaryOn="There are restrictions on flight parameters"
|
|
app:title="Power saving" />
|
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory app:title="@string/sync_header">
|
|
|
|
<SwitchPreferenceCompat
|
|
app:key="frequency"
|
|
app:title="High frequency"
|
|
app:summaryOff="When turned on, power consumption accelerates"
|
|
app:summaryOn="Power consumption is normal after shutdown"/>
|
|
|
|
<SwitchPreferenceCompat
|
|
app:dependency="5G"
|
|
app:key="attachment"
|
|
app:summaryOff="5G signals are fast, but coverage is limited"
|
|
app:summaryOn="5G signals are fast, but coverage is limited"
|
|
app:title="Use 5G" />
|
|
|
|
</PreferenceCategory>
|
|
</PreferenceScreen>
|
|
|