preferences.xml (1081B)
1 <?xml version="1.0" encoding="utf-8"?> 2 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:app="http://schemas.android.com/apk/res-auto"> 4 <androidx.preference.SwitchPreferenceCompat 5 android:key="pref_auto_open_donau" 6 android:title="@string/pref_auto_open_donau_title" 7 android:summaryOn="@string/pref_auto_open_donau_summary_on" 8 android:summaryOff="@string/pref_auto_open_donau_summary_off" 9 android:defaultValue="true" 10 android:icon="@drawable/ic_info" 11 app:iconSpaceReserved="true" 12 app:isPreferenceVisible="true" /> 13 <androidx.preference.SwitchPreferenceCompat 14 android:key="pref_developer_mode" 15 android:title="@string/pref_developer_mode_title" 16 android:summaryOn="@string/pref_developer_mode_summary_on" 17 android:summaryOff="@string/pref_developer_mode_summary_off" 18 android:defaultValue="false" 19 android:icon="@drawable/ic_warning" 20 app:iconSpaceReserved="true" 21 app:isPreferenceVisible="true" /> 22 </PreferenceScreen>