2022-10-22 21:53:45 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<PreferenceScreen
|
|
|
|
android:icon="@drawable/ic_volume_up"
|
|
|
|
android:key="pref_screen_sound_and_vibration"
|
|
|
|
android:persistent="false"
|
|
|
|
android:title="@string/pref_header_sound_vibration">
|
|
|
|
|
|
|
|
<SeekBarPreference
|
|
|
|
android:defaultValue="50"
|
|
|
|
android:icon="@drawable/ic_volume_up"
|
|
|
|
android:key="volume"
|
|
|
|
android:max="100"
|
|
|
|
android:title="@string/menuitem_volume" />
|
|
|
|
|
2023-10-06 22:06:35 +02:00
|
|
|
<SwitchPreferenceCompat
|
2022-10-22 21:53:45 +02:00
|
|
|
android:defaultValue="false"
|
|
|
|
android:icon="@drawable/ic_rotate_left"
|
|
|
|
android:key="crown_vibration"
|
2024-03-31 00:31:23 +01:00
|
|
|
android:layout="@layout/preference_checkbox"
|
2022-10-22 21:53:45 +02:00
|
|
|
android:title="@string/pref_crown_vibration" />
|
|
|
|
|
2023-10-06 22:06:35 +02:00
|
|
|
<SwitchPreferenceCompat
|
2022-10-22 21:53:45 +02:00
|
|
|
android:defaultValue="false"
|
|
|
|
android:icon="@drawable/ic_warning_gray"
|
|
|
|
android:key="alert_tone"
|
2024-03-31 00:31:23 +01:00
|
|
|
android:layout="@layout/preference_checkbox"
|
2022-10-22 21:53:45 +02:00
|
|
|
android:title="@string/pref_alert_tone" />
|
|
|
|
|
2023-10-06 22:06:35 +02:00
|
|
|
<SwitchPreferenceCompat
|
2022-10-22 21:53:45 +02:00
|
|
|
android:defaultValue="false"
|
|
|
|
android:icon="@drawable/ic_volume_off"
|
|
|
|
android:key="cover_to_mute"
|
2024-03-31 00:31:23 +01:00
|
|
|
android:layout="@layout/preference_checkbox"
|
2022-10-22 21:53:45 +02:00
|
|
|
android:title="@string/pref_cover_to_mute" />
|
|
|
|
|
2023-10-06 22:06:35 +02:00
|
|
|
<SwitchPreferenceCompat
|
2022-10-22 21:53:45 +02:00
|
|
|
android:defaultValue="false"
|
|
|
|
android:icon="@drawable/ic_vibration"
|
|
|
|
android:key="vibrate_for_alert"
|
2024-03-31 00:31:23 +01:00
|
|
|
android:layout="@layout/preference_checkbox"
|
2022-10-22 21:53:45 +02:00
|
|
|
android:title="@string/pref_vibrate_for_alert" />
|
|
|
|
|
2023-10-06 22:06:35 +02:00
|
|
|
<SwitchPreferenceCompat
|
2022-10-22 21:53:45 +02:00
|
|
|
android:defaultValue="false"
|
|
|
|
android:icon="@drawable/ic_voice"
|
|
|
|
android:key="text_to_speech"
|
2024-03-31 00:31:23 +01:00
|
|
|
android:layout="@layout/preference_checkbox"
|
2022-10-22 21:53:45 +02:00
|
|
|
android:title="@string/pref_text_to_speech" />
|
|
|
|
</PreferenceScreen>
|
|
|
|
</androidx.preference.PreferenceScreen>
|