Setting the summary with string formatting (%s) is deprecated. Reference: https://developer.android.com/develop/ui/views/components/settings/customize-your-settings#summaries Change-Id: Ie541b81460627b54a794c4302bfee29c0130d842
48 lines
2.0 KiB
XML
48 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
SPDX-FileCopyrightText: 2021-2025 The LineageOS Project
|
|
SPDX-License-Identifier: Apache-2.0
|
|
-->
|
|
<PreferenceScreen
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<PreferenceCategory
|
|
android:title="@string/alert_slider_category_title">
|
|
|
|
<SwitchPreferenceCompat
|
|
android:key="config_mute_media"
|
|
android:title="@string/alert_slider_mute_media_title"
|
|
android:summary="@string/alert_slider_mute_media_summary"
|
|
android:defaultValue="0" />
|
|
|
|
<ListPreference
|
|
android:key="config_top_position"
|
|
android:dialogTitle="@string/alert_slider_selection_dialog_title"
|
|
android:entries="@array/alert_slider_action_entries"
|
|
android:entryValues="@array/alert_slider_action_entry_values"
|
|
android:defaultValue="0"
|
|
android:title="@string/alert_slider_top_position"
|
|
app:useSimpleSummaryProvider="true" />
|
|
|
|
<ListPreference
|
|
android:key="config_middle_position"
|
|
android:dialogTitle="@string/alert_slider_selection_dialog_title"
|
|
android:entries="@array/alert_slider_action_entries"
|
|
android:entryValues="@array/alert_slider_action_entry_values"
|
|
android:defaultValue="1"
|
|
android:title="@string/alert_slider_middle_position"
|
|
app:useSimpleSummaryProvider="true" />
|
|
|
|
<ListPreference
|
|
android:key="config_bottom_position"
|
|
android:dialogTitle="@string/alert_slider_selection_dialog_title"
|
|
android:entries="@array/alert_slider_action_entries"
|
|
android:entryValues="@array/alert_slider_action_entry_values"
|
|
android:defaultValue="2"
|
|
android:title="@string/alert_slider_bottom_position"
|
|
app:useSimpleSummaryProvider="true" />
|
|
|
|
</PreferenceCategory>
|
|
</PreferenceScreen>
|