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

21 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"
app:enableCopying="true"
app:icon="@drawable/ic_cellphone_lock_white_24dp" />
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"
2018-07-27 13:07:33 +00:00
android:summary="@string/pref_summary_colored_notification"
2019-06-02 10:10:33 +00:00
android:title="@string/pref_title_colored_notification"
app:enableCopying="true" />
2019-06-29 17:15:31 +00:00
2018-08-30 09:29:30 +00:00
</androidx.preference.PreferenceScreen>