* Depth Wallpaper * Intensity-based back gesture haptics * Intensity-based brightness slider haptics * Intensity-based edge scroll fling haptics * Intensity-based volume slider haptics * Lockscreen media art filter * Media player mode * More QS tile animations * Notification themes * Power menu styles * Progress bar styles * QS Header Clock styles * Split notification shade * Volume panel styles * Wallpaper styles
72 lines
3.0 KiB
XML
72 lines
3.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2023-2024 the risingOS Android Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
<PreferenceScreen
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:settings="http://schemas.android.com/apk/res/com.android.settings"
|
|
android:title="@string/wallpaper_settings_title">
|
|
|
|
<PreferenceCategory
|
|
android:key="wallpaper_blur"
|
|
android:title="@string/wallpaper_blur_title">
|
|
|
|
<org.evolution.settings.preferences.SystemPropertyListPreference
|
|
android:key="persist.sys.wallpaper.blur_enabled"
|
|
android:title="@string/wallpaper_blur_title"
|
|
android:entries="@array/wallpaper_blur_entries"
|
|
android:entryValues="@array/wallpaper_blur_values"
|
|
android:summary="%s"
|
|
android:defaultValue="0" />
|
|
|
|
<org.evolution.settings.preferences.SystemPropertyListPreference
|
|
android:key="persist.sys.wallpaper.blur_type"
|
|
android:title="@string/wallpaper_blur_filter"
|
|
android:entries="@array/wallpaper_blur_filter_entries"
|
|
android:entryValues="@array/wallpaper_blur_filter_values"
|
|
android:summary="%s"
|
|
android:defaultValue="0" />
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory
|
|
android:key="wallpaper_dim"
|
|
android:title="@string/wallpaper_dim_title">
|
|
|
|
<org.evolution.settings.preferences.SystemPropertyListPreference
|
|
android:key="persist.sys.wallpaper.dim_enabled"
|
|
android:title="@string/wallpaper_dim_title"
|
|
android:entries="@array/wallpaper_blur_entries"
|
|
android:entryValues="@array/wallpaper_blur_values"
|
|
android:summary="%s"
|
|
android:defaultValue="0" />
|
|
|
|
<org.evolution.settings.preferences.SystemSettingSeekBarPreference
|
|
android:key="persist.sys.wallpaper.dim_level"
|
|
android:title="@string/wallpaper_dim_level_title"
|
|
android:summary="@string/wallpaper_dim_level_summary"
|
|
android:defaultValue="10"
|
|
settings:interval="1"
|
|
settings:units="%"
|
|
android:max="100"
|
|
android:min="1" />
|
|
</PreferenceCategory>
|
|
|
|
<com.android.settingslib.widget.FooterPreference
|
|
android:key="wallpaper_styles_footer"
|
|
android:title="@string/wallpaper_styles_footer"
|
|
android:selectable="false"
|
|
settings:searchable="false" />
|
|
</PreferenceScreen>
|