VancedManager/app/src/main/res/xml/preferences.xml

37 lines
1.2 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2020-04-13 21:07:19 +00:00
<PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android"
2020-04-12 20:09:17 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto">
<Preference
android:key="update_check"
2020-04-15 14:26:18 +00:00
android:title="@string/check_updates"
android:icon="@drawable/ic_cloud_upload_black_24dp"/>
<PreferenceCategory
2020-04-15 14:26:18 +00:00
android:title="@string/category_interface"
2020-04-12 20:09:17 +00:00
app:iconSpaceReserved="false">
<ListPreference
android:icon="@drawable/ic_brush_black_24dp"
android:key="theme_mode"
android:title="@string/theme"
2020-04-15 14:26:18 +00:00
android:summary="@string/theme_summary"
android:entries="@array/theme_modes"
android:entryValues="@array/theme_modes_values"
2020-04-30 08:39:52 +00:00
android:defaultValue="LIGHT"/>
</PreferenceCategory>
<PreferenceCategory
2020-04-15 14:26:18 +00:00
android:title="@string/category_manager"
2020-04-12 20:09:17 +00:00
app:iconSpaceReserved="false">
<SwitchPreference
2020-04-15 14:26:18 +00:00
android:title="@string/push_notifications"
android:key="push_notifications_status"
2020-04-15 14:26:18 +00:00
android:summary="@string/push_notifications_summary"
android:icon="@drawable/ic_notifications_black_24dp"/>
</PreferenceCategory>
</PreferenceScreen>