2021-09-30 22:40:18 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2024-04-05 19:54:58 +02:00
|
|
|
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2023-10-06 22:06:35 +02:00
|
|
|
<SwitchPreferenceCompat
|
2021-09-30 22:40:18 +02:00
|
|
|
android:defaultValue="true"
|
|
|
|
android:icon="@drawable/ic_extension"
|
|
|
|
android:key="pref_nothing_inear_detection"
|
2024-03-31 00:31:23 +01:00
|
|
|
android:layout="@layout/preference_checkbox"
|
2021-10-07 20:22:41 +02:00
|
|
|
android:summary="@string/nothing_prefs_inear_summary"
|
|
|
|
android:title="@string/nothing_prefs_inear_title" />
|
2021-09-30 22:40:18 +02:00
|
|
|
<ListPreference
|
|
|
|
android:icon="@drawable/ic_extension"
|
2024-01-05 10:35:03 +01:00
|
|
|
android:entryValues="@array/nothing_ear1_audio_mode_values"
|
|
|
|
android:entries="@array/nothing_ear1_audio_mode_names"
|
2021-09-30 22:40:18 +02:00
|
|
|
android:key="pref_nothing_audiomode"
|
|
|
|
android:summary="%s"
|
2021-10-07 20:22:41 +02:00
|
|
|
android:title="@string/nothing_prefs_audiomode_title" />
|
2021-09-30 22:40:18 +02:00
|
|
|
</androidx.preference.PreferenceScreen>
|