2020-02-27 13:36:53 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
2020-03-15 00:23:06 +01:00
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="weatherApp"
|
|
|
|
android:entries="@array/pref_hybridhr_buttonfunctions"
|
|
|
|
android:entryValues="@array/pref_hybridhr_buttonfunctions_values"
|
|
|
|
android:key="button_1_function"
|
|
|
|
android:summary="%s"
|
|
|
|
android:title="@string/pref_title_upper_button_function" />
|
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="commuteApp"
|
|
|
|
android:entries="@array/pref_hybridhr_buttonfunctions"
|
|
|
|
android:entryValues="@array/pref_hybridhr_buttonfunctions_values"
|
|
|
|
android:key="button_2_function"
|
|
|
|
android:summary="%s"
|
|
|
|
android:title="@string/pref_title_middle_button_function" />
|
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="musicApp"
|
|
|
|
android:entries="@array/pref_hybridhr_buttonfunctions"
|
|
|
|
android:entryValues="@array/pref_hybridhr_buttonfunctions_values"
|
|
|
|
android:key="button_3_function"
|
|
|
|
android:summary="%s"
|
|
|
|
android:title="@string/pref_title_lower_button_function" />
|
2020-02-27 13:36:53 +01:00
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="force_white_color_scheme"
|
|
|
|
android:summary="@string/pref_summary_force_white_color_scheme"
|
|
|
|
android:title="@string/pref_title_force_white_color_scheme" />
|
|
|
|
</androidx.preference.PreferenceScreen>
|