Co-authored-by: Pranav Vashi <neobuddy89@gmail.com> Signed-off-by: AnierinB <anierin@evolution-x.org>
102 lines
4.1 KiB
XML
102 lines
4.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2019-2024 Evolution X
|
|
SPDX-License-Identifier: Apache-2.0
|
|
-->
|
|
|
|
<PreferenceScreen
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:settings="http://schemas.android.com/apk/res/com.android.settings"
|
|
android:title="@string/themes_title">
|
|
|
|
<PreferenceCategory
|
|
android:key="themes_monet_category"
|
|
android:title="@string/themes_monet_category">
|
|
|
|
<!-- Monet engine -->
|
|
<Preference
|
|
android:key="monet_engine"
|
|
android:title="@string/themes_monet_title"
|
|
android:summary="@string/themes_monet_summary"
|
|
android:fragment="org.evolution.settings.fragments.themes.MonetSettings" />
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory
|
|
android:key="themes_fonts_category"
|
|
android:title="@string/themes_fonts_category">
|
|
|
|
<!-- System font -->
|
|
<Preference
|
|
android:key="android.theme.customization.fonts"
|
|
android:title="@string/themes_system_font_title"
|
|
android:summary="@string/themes_system_font_summary"
|
|
android:fragment="org.evolution.settings.fragments.themes.Fonts"/>
|
|
|
|
<!-- Lock screen clock font -->
|
|
<Preference
|
|
android:key="android.theme.customization.lockscreen_clock_font"
|
|
android:title="@string/themes_lock_screen_clock_font_title"
|
|
android:summary="@string/themes_lock_screen_clock_font_summary"
|
|
android:fragment="org.evolution.settings.fragments.themes.LockScreenClockFonts"/>
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory
|
|
android:key="themes_icons_category"
|
|
android:title="@string/themes_icons_category">
|
|
|
|
<!-- System icons -->
|
|
<Preference
|
|
android:key="android.theme.customization.icon_pack"
|
|
android:title="@string/themes_system_icons_title"
|
|
android:summary="@string/themes_system_icons_summary"
|
|
android:fragment="org.evolution.settings.fragments.themes.SystemIcons"/>
|
|
|
|
<!-- Icon shape -->
|
|
<Preference
|
|
android:key="android.theme.customization.adaptive_icon_shape"
|
|
android:title="@string/themes_icon_shape_title"
|
|
android:summary="@string/themes_icon_shape_summary"
|
|
android:fragment="org.evolution.settings.fragments.themes.IconShapes"/>
|
|
|
|
<!-- Signal icon -->
|
|
<Preference
|
|
android:key="android.theme.customization.signal_icon"
|
|
android:title="@string/themes_signal_icon_title"
|
|
android:summary="@string/themes_signal_icon_summary"
|
|
android:fragment="org.evolution.settings.fragments.themes.SignalIcons"/>
|
|
|
|
<!-- Wifi icon -->
|
|
<Preference
|
|
android:key="android.theme.customization.wifi_icon"
|
|
android:title="@string/themes_wifi_icon_title"
|
|
android:summary="@string/themes_wifi_icon_summary"
|
|
android:fragment="org.evolution.settings.fragments.themes.WifiIcons"/>
|
|
|
|
<!-- Navigation bar icons -->
|
|
<Preference
|
|
android:key="android.theme.customization.navbar"
|
|
android:title="@string/themes_navigation_bar_icons_title"
|
|
android:summary="@string/themes_navigation_bar_icons_summary"
|
|
android:fragment="org.evolution.settings.fragments.themes.NavigationBarIcons"/>
|
|
|
|
<!-- Udfps icon -->
|
|
<Preference
|
|
android:key="udfps_icon"
|
|
android:title="@string/themes_udfps_icon_title"
|
|
android:summary="@string/themes_udfps_icon_summary"
|
|
android:fragment="org.evolution.settings.fragments.themes.UdfpsIcons" />
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory
|
|
android:key="themes_animations_category"
|
|
android:title="@string/themes_animations_category">
|
|
|
|
<!-- Udfps animation -->
|
|
<Preference
|
|
android:key="udfps_animation"
|
|
android:title="@string/themes_udfps_animation_title"
|
|
android:summary="@string/themes_udfps_animation_summary"
|
|
android:fragment="org.evolution.settings.fragments.themes.UdfpsAnimations" />
|
|
</PreferenceCategory>
|
|
</PreferenceScreen>
|