22 lines
985 B
XML
22 lines
985 B
XML
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<org.adrianvictor.geleia.views.settings.JellyPreferenceCategory android:title="@string/pref_header_notification">
|
|
|
|
<SwitchPreference
|
|
app:iconSpaceReserved="false"
|
|
android:defaultValue="false"
|
|
android:key="classic_notification"
|
|
android:summary="@string/pref_summary_classic_notification"
|
|
android:title="@string/pref_title_classic_notification" />
|
|
|
|
<SwitchPreference
|
|
app:iconSpaceReserved="false"
|
|
android:defaultValue="false"
|
|
android:key="colored_notification"
|
|
android:summary="@string/pref_summary_colored_notification"
|
|
android:title="@string/pref_title_colored_notification" />
|
|
|
|
</org.adrianvictor.geleia.views.settings.JellyPreferenceCategory>
|
|
|
|
</androidx.preference.PreferenceScreen>
|