Cherish: Pulse navbar audio gfx visualizer for Android 10 [3/4]

This commit is contained in:
bigrushdog
2020-06-09 16:31:25 -07:00
committed by Hưng Phan
parent f191797faa
commit 361e48f3d8
5 changed files with 358 additions and 0 deletions

View File

@@ -95,6 +95,13 @@
android:icon="@drawable/ic_media"
android:defaultValue="true" />
<Preference
android:key="pulse"
android:title="@string/pulse_settings"
android:icon="@drawable/ic_visualizer"
android:summary="@string/pulse_settings_summary"
android:fragment="com.cherish.settings.fragments.PulseSettings" />
<com.cherish.settings.preferences.SystemSettingSeekBarPreference
android:key="lockscreen_media_blur"
android:title="@string/lockscreen_media_blur_title"

View File

@@ -0,0 +1,144 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2012-2014 The TeamEos 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/pulse_settings" >
<com.cherish.settings.preferences.SystemSettingSwitchPreference
android:key="navbar_pulse_enabled"
android:title="@string/show_pulse_title"
android:summary="@string/show_pulse_summary"
android:defaultValue="false" />
<com.cherish.settings.preferences.SystemSettingListPreference
android:key="navbar_pulse_render_style"
android:title="@string/pulse_render_mode_title"
android:entries="@array/pulse_render_mode_entries"
android:entryValues="@array/pulse_render_mode_values"
android:defaultValue="0"
android:dependency="navbar_pulse_enabled" />
<com.cherish.settings.preferences.SystemSettingSwitchPreference
android:key="pulse_smoothing_enabled"
android:title="@string/smoothing_enabled_title"
android:summary="@string/smoothing_enabled_summary"
android:defaultValue="false"
android:dependency="navbar_pulse_enabled" />
<PreferenceCategory
android:key="pulse_color_category"
android:title="@string/pulse_color"
android:dependency="navbar_pulse_enabled">
<com.cherish.settings.preferences.SystemSettingListPreference
android:key="navbar_pulse_color_type"
android:title="@string/pulse_color_mode"
android:entries="@array/pulse_color_mode_entries"
android:entryValues="@array/pulse_color_mode_values"
android:defaultValue="1"/>
<com.cherish.settings.colorpicker.ColorPickerPreference
android:key="navbar_pulse_color_user"
android:title="@string/pulse_color_chooser"
android:persistent="false" />
<com.cherish.settings.preferences.CustomSystemSeekBarPreference
android:key="navbar_pulse_lavalamp_speed"
android:title="@string/lavamp_speed_title"
android:max="30000"
android:defaultValue="10000"
settings:min="200"
settings:interval="200"
settings:units="ms"/>
</PreferenceCategory>
<PreferenceCategory
android:key="pulse_fading_bars_category"
android:title="@string/pulse_legacy_mode_advanced_category"
android:dependency="navbar_pulse_enabled">
<com.cherish.settings.preferences.CustomSystemSeekBarPreference
android:key="pulse_custom_dimen"
android:title="@string/pulse_custom_dimen"
android:max="30"
android:defaultValue="14"
settings:min="1"
settings:units="dp"/>
<com.cherish.settings.preferences.CustomSystemSeekBarPreference
android:key="pulse_custom_div"
android:title="@string/pulse_custom_div"
android:max="44"
android:defaultValue="16"
settings:min="2"
settings:interval="2"
settings:units="dp"/>
<com.cherish.settings.preferences.CustomSystemSeekBarPreference
android:key="pulse_filled_block_size"
android:title="@string/pulse_filled_block_size"
android:max="8"
android:defaultValue="4"
settings:min="4"
settings:units="dp"/>
<com.cherish.settings.preferences.CustomSystemSeekBarPreference
android:key="pulse_empty_block_size"
android:title="@string/pulse_empty_block_size"
android:max="4"
android:defaultValue="1"
settings:min="0"
settings:units="dp"/>
<com.cherish.settings.preferences.CustomSystemSeekBarPreference
android:key="pulse_custom_fudge_factor"
android:title="@string/pulse_custom_fudge_factor"
android:max="6"
android:defaultValue="4"
settings:min="2"/>
</PreferenceCategory>
<PreferenceCategory
android:key="pulse_2"
android:title="@string/pulse_solid_dimen_category"
android:dependency="navbar_pulse_enabled">
<com.cherish.settings.preferences.CustomSystemSeekBarPreference
android:key="pulse_solid_units_opacity"
android:title="@string/pulse_solid_units_opacity"
android:max="255"
android:defaultValue="200"
settings:min="0"/>
<com.cherish.settings.preferences.CustomSystemSeekBarPreference
android:key="pulse_solid_units_count"
android:title="@string/pulse_solid_units_count"
android:max="128"
android:defaultValue="64"
settings:interval="16"
settings:min="32"/>
<com.cherish.settings.preferences.CustomSystemSeekBarPreference
android:key="pulse_solid_fudge_factor"
android:title="@string/pulse_custom_fudge_factor"
android:max="7"
android:defaultValue="5"
settings:min="2"/>
</PreferenceCategory>
</PreferenceScreen>