2020-02-27 13:36:53 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-03-20 17:14:00 +01:00
|
|
|
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
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" />
|
2020-03-20 17:14:00 +01:00
|
|
|
<SeekBarPreference
|
|
|
|
android:defaultValue="2"
|
|
|
|
android:key="@string/pref_title_vibration_strength"
|
|
|
|
android:max="3"
|
|
|
|
android:title="@string/pref_title_vibration_strength"
|
|
|
|
app:showSeekBarValue="true" />
|
|
|
|
|
2020-02-27 13:36:53 +01:00
|
|
|
</androidx.preference.PreferenceScreen>
|