Files
packages_apps_Evolver/res/xml/qs_layout_settings.xml
Joey Huab b1a5405a1c Evolver: Updates for A16
* Commits below include features from A15 that were
  preserved but had their implementations changed/replaced.

Update strings
Add Fluid power menu style
Add Volume sound feedback
Re-arrange developer category options
Enable PIF spoof by default
Drop Play store spoof
Restore QS layout settings
Add option to disable quicksettings on keyguard
Add lockscreen media art
Add pulse visualizer
Add fading block renderer for Pulse
Use master switch for pulse enable

Update for edge light feature updates
- Add 4-side rounded style option for edge light
- Add rainbow gradient color mode
- Add 3 new pulse style
- Fix default values for edge light customization
- Make ambient pulse configurable
- Fix default value for edge light style

Co-authored-by: Pranav Vashi <neobuddy89@gmail.com>
Co-authored-by: rmp22 <195054967+rmp22@users.noreply.github.com>
Co-authored-by: Ghosuto <clash.raja10@gmail.com>
2025-11-09 20:40:31 +09:00

83 lines
3.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2024 crDroid 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/quick_settings_layout_columns_rows_title">
<!-- Columns (portrait) -->
<org.evolution.settings.preferences.SystemSettingSeekBarPreference
android:key="qs_tiles_columns"
android:title="@string/quick_settings_columns_portrait_title"
android:max="6"
settings:min="2"
settings:interval="1"
android:defaultValue="4" />
<!-- Columns (landscape) -->
<org.evolution.settings.preferences.SystemSettingSeekBarPreference
android:key="qs_tiles_columns_landscape"
android:title="@string/quick_settings_columns_landscape_title"
android:max="6"
settings:min="2"
settings:interval="1"
android:defaultValue="4" />
<!-- Rows (portrait) -->
<org.evolution.settings.preferences.SystemSettingSeekBarPreference
android:key="qs_tiles_rows"
android:title="@string/quick_settings_rows_portrait_title"
android:max="5"
settings:min="2"
settings:interval="1"
android:defaultValue="4" />
<!-- Rows (landscape) -->
<org.evolution.settings.preferences.SystemSettingSeekBarPreference
android:key="qs_tiles_rows_landscape"
android:title="@string/quick_settings_rows_landscape_title"
android:max="3"
settings:min="1"
settings:interval="1"
android:defaultValue="2" />
<!-- Quick QS rows (portrait) -->
<org.evolution.settings.preferences.SystemSettingSeekBarPreference
android:key="qqs_layout_rows"
android:title="@string/quick_settings_qqs_rows_portrait_title"
android:max="3"
settings:min="1"
settings:interval="1"
android:defaultValue="2" />
<!-- Quick QS rows (landscape) -->
<!--<org.evolution.settings.preferences.SystemSettingSeekBarPreference
android:key="qqs_layout_rows_landscape"
android:title="@string/quick_settings_qqs_rows_landscape_title"
android:max="3"
settings:min="1"
settings:interval="1"
android:defaultValue="1" />
<com.android.settingslib.widget.FooterPreference
android:key="qs_layout_columns_rows_footer"
android:title="@string/quick_settings_layout_columns_rows_footer_text"
android:selectable="false"
settings:searchable="false" />-->
</PreferenceScreen>