PlayerAndroid/app/src/main/res/xml/pref_notification.xml

20 lines
1.0 KiB
XML
Raw Normal View History

2018-07-27 13:07:33 +00:00
<?xml version="1.0" encoding="utf-8"?>
2018-08-30 09:29:30 +00:00
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
2019-06-29 17:15:31 +00:00
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
android:defaultValue="false"
android:key="classic_notification"
2019-11-04 18:43:54 +00:00
android:layout="@layout/list_item_view_switch"
2019-06-29 17:15:31 +00:00
android:summary="@string/pref_summary_classic_notification"
android:title="@string/pref_title_classic_notification"
2020-07-19 21:00:30 +00:00
app:icon="@drawable/ic_cellphone_lock" />
2018-07-27 13:07:33 +00:00
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
android:defaultValue="true"
android:key="colored_notification"
2019-11-04 18:43:54 +00:00
android:layout="@layout/list_item_view_switch"
app:isPreferenceVisible="@bool/colored_notification_available"
2018-07-27 13:07:33 +00:00
android:summary="@string/pref_summary_colored_notification"
2020-01-06 05:34:09 +00:00
android:title="@string/pref_title_colored_notification" />
2019-06-29 17:15:31 +00:00
2018-08-30 09:29:30 +00:00
</androidx.preference.PreferenceScreen>