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

59 lines
1.9 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"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:key="prefScreen">
<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">
<Preference
android:key="update_check"
android:title="@string/check_updates"
android:icon="@drawable/ic_cloud_upload_black_24dp"/>
<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>
<PreferenceCategory
android:title="@string/category_interface"
android:key="interface_category"
app:iconSpaceReserved="false">
<ListPreference
android:icon="@drawable/ic_brush_black_24dp"
android:key="theme_mode"
android:title="@string/theme"
android:summary="@string/theme_summary"
android:entries="@array/theme_modes"
android:entryValues="@array/theme_modes_values"
android:defaultValue="Follow System"/>
2020-05-03 21:51:39 +00:00
<ListPreference
android:defaultValue="Blue"
android:entries="@array/accent_color"
2020-05-04 14:13:52 +00:00
android:entryValues="@array/accent_color_values"
2020-05-03 21:51:39 +00:00
android:icon="@drawable/ic_palette_black_24dp"
2020-05-03 22:20:14 +00:00
android:key="accent_color"
android:summary="@string/accent_color_summary"
android:title="@string/accent_color" />
2020-05-03 21:51:39 +00:00
</PreferenceCategory>
2020-05-30 13:49:03 +00:00
<PreferenceCategory
android:title="Vanced"
app:iconSpaceReserved="false">
2020-05-30 13:49:03 +00:00
<Preference
android:title="Chosen Installation values"
android:key="vanced_chosen_modes" />
</PreferenceCategory>
</PreferenceScreen>