* 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
68 lines
2.6 KiB
XML
68 lines
2.6 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/dw_wallpaper_enabled_title">
|
|
|
|
<org.evolution.settings.preferences.SystemSettingSwitchPreference
|
|
android:key="depth_wallpaper_enabled"
|
|
android:title="@string/dw_wallpaper_enabled_title"
|
|
android:summary="@string/dw_wallpaper_enabled_summary"
|
|
android:defaultValue="false" />
|
|
|
|
<Preference
|
|
android:key="depth_wallpaper_subject_image_uri"
|
|
android:dependency="depth_wallpaper_enabled"
|
|
android:title="@string/dw_file_header_select_title"
|
|
android:summary="@string/dw_file_header_select_summary"
|
|
android:persistent="false" />
|
|
|
|
<org.evolution.settings.preferences.SystemSettingSeekBarPreference
|
|
android:key="depth_wallpaper_opacity"
|
|
android:title="@string/dw_wallpaper_opacity_title"
|
|
android:max="100"
|
|
settings:min="1"
|
|
settings:interval="1"
|
|
settings:units="%"
|
|
android:defaultValue="100" />
|
|
|
|
<org.evolution.settings.preferences.SystemSettingSeekBarPreference
|
|
android:key="depth_wallpaper_offset_x"
|
|
android:title="@string/depth_wallpaper_offset_x_title"
|
|
android:max="100"
|
|
settings:min="-100"
|
|
settings:interval="1"
|
|
settings:units="%"
|
|
android:defaultValue="0" />
|
|
|
|
<org.evolution.settings.preferences.SystemSettingSeekBarPreference
|
|
android:key="depth_wallpaper_offset_y"
|
|
android:title="@string/depth_wallpaper_offset_y_title"
|
|
android:max="100"
|
|
settings:min="-100"
|
|
settings:interval="1"
|
|
settings:units="%"
|
|
android:defaultValue="0" />
|
|
|
|
<com.android.settingslib.widget.FooterPreference
|
|
android:key="dw_footer"
|
|
android:title="@string/dw_footer_text"
|
|
android:selectable="false"
|
|
settings:searchable="false" />
|
|
</PreferenceScreen>
|