2021-12-23 18:56:36 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-06-11 02:52:56 +02:00
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2021-12-23 18:56:36 +01:00
|
|
|
<PreferenceCategory
|
|
|
|
android:key="pref_discovery_pairing"
|
|
|
|
android:title="@string/activity_prefs_discovery_pairing">
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="ignore_bonded_devices"
|
|
|
|
android:layout="@layout/preference_checkbox"
|
|
|
|
android:summary="@string/ignore_bonded_devices_description"
|
|
|
|
android:title="@string/ignore_bonded_devices" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="enable_companiondevice_pairing"
|
|
|
|
android:layout="@layout/preference_checkbox"
|
|
|
|
android:summary="@string/companiondevice_pairing_details"
|
|
|
|
android:title="@string/companiondevice_pairing" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="discover_unsupported_devices"
|
|
|
|
android:layout="@layout/preference_checkbox"
|
|
|
|
android:summary="@string/discover_unsupported_devices_description"
|
|
|
|
android:title="@string/discover_unsupported_devices" />
|
2022-06-11 02:52:56 +02:00
|
|
|
<SeekBarPreference
|
|
|
|
android:key="scanning_intensity"
|
|
|
|
android:max="3"
|
|
|
|
android:min="0"
|
|
|
|
android:title="@string/discovery_scanning_intensity"
|
2022-06-12 17:41:34 +02:00
|
|
|
android:defaultValue="1"
|
2022-06-11 02:52:56 +02:00
|
|
|
app:showSeekBarValue="true" />
|
|
|
|
<Preference
|
|
|
|
android:selectable="false"
|
|
|
|
android:persistent="false"
|
|
|
|
android:summary="@string/discovery_scanning_intensity_warning" />
|
|
|
|
|
2021-12-23 18:56:36 +01:00
|
|
|
</PreferenceCategory>
|
|
|
|
</PreferenceScreen>
|