Cherish:QS header image [1/2]

Signed-off-by: Hưng Phan <phandinhhungvp2001@gmail.com>
This commit is contained in:
maxwen
2019-02-03 15:23:51 +05:30
committed by Hưng Phan
parent d5de3f33af
commit 71d8a3620c
6 changed files with 339 additions and 3 deletions

View File

@@ -950,4 +950,14 @@
<item>1</item>
<item>2</item>
</string-array>
<!-- QS header image -->
<string-array name="custom_header_provider_entries" translatable="false">
<item>@string/daylight_header_provider_title</item>
<item>@string/file_header_provider_title</item>
</string-array>
<string-array name="custom_header_provider_values" translatable="false">
<item>@string/daylight_header_provider</item>
<item>@string/file_header_provider</item>
</string-array>
</resources>

View File

@@ -892,4 +892,20 @@
<string name="fod_icon_picker_title">Fingerprint icon</string>
<string name="fod_icon_picker_summary">Choose your favorite fingerprint icon</string>
<string name="fod_icon_picker_footer">In order to add your own icon, select the top left icon and use the OnePlus 6T FP Customizer app to select the icon you want.</string>
<!-- QS header image -->
<string name="status_bar_custom_header_title">Header image</string>
<string name="status_bar_custom_header_summary">Use a custom image for QS header</string>
<string name="daylight_header_provider" translatable="false">daylight</string>
<string name="file_header_provider" translatable="false">file</string>
<string name="custom_header_provider_title">Image type</string>
<string name="daylight_header_provider_title">Automatic (Time based)</string>
<string name="file_header_provider_title">Static</string>
<string name="daylight_header_pack_title">Image collection</string>
<string name="header_provider_disabled">Disabled</string>
<string name="custom_header_pick_title">Pick image from collection</string>
<string name="custom_header_pick_summary">Select an image from pre-installed image collections</string>
<string name="file_header_select_title">Pick image from storage</string>
<string name="file_header_select_summary">Select an image from internal storage</string>
<string name="status_bar_custom_header_shadow_title">Darken image</string>
</resources>

View File

@@ -18,6 +18,9 @@
android:title="@string/quicksettings_title"
xmlns:settings="http://schemas.android.com/apk/res/com.android.settings">
<PreferenceCategory
android:title="@string/qs_category">
<com.cherish.settings.preferences.SystemSettingSwitchPreference
android:key="qs_panel_bg_use_new_tint"
android:icon="@drawable/ic_color"
@@ -25,6 +28,14 @@
android:summary="@string/qs_bg_use_new_tint_summary"
android:defaultValue="true" />
<com.cherish.settings.preferences.SystemSettingMasterSwitchPreference
android:key="status_bar_custom_header"
android:icon="@drawable/ic_header"
android:fragment="com.cherish.settings.fragments.QsHeader"
android:title="@string/status_bar_custom_header_title"
android:summary="@string/status_bar_custom_header_summary"
android:defaultValue="false" />
<com.cherish.settings.preferences.SystemSettingSwitchPreference
android:key="omni_footer_text_show"
android:icon="@drawable/ic_edit_show"
@@ -65,6 +76,7 @@
android:summary="@string/status_bar_toggle_brightness_summary"
android:defaultValue="false" />
</PreferenceCategory>
<com.cherish.settings.preferences.SecureSettingSwitchPreference
android:key="quick_settings_vibrate"

58
res/xml/qs_header.xml Normal file
View File

@@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2020 ion-OS
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
android:title="@string/status_bar_custom_header_title"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:settings="http://schemas.android.com/apk/res/com.android.settings">
<ListPreference
android:key="custom_header_provider"
android:title="@string/custom_header_provider_title"
android:persistent="false"
android:entries="@array/custom_header_provider_entries"
android:entryValues="@array/custom_header_provider_values" />
<ListPreference
android:key="daylight_header_pack"
android:title="@string/daylight_header_pack_title"
android:persistent="false" />
<Preference
android:key="custom_header_browse"
android:title="@string/custom_header_pick_title"
android:summary="@string/custom_header_pick_summary"
android:persistent="false" >
<intent android:action="android.intent.action.MAIN"
android:targetPackage="org.omnirom.omnistyle"
android:targetClass="org.omnirom.omnistyle.PickHeaderActivity" />
</Preference>
<Preference
android:key="file_header_select"
android:title="@string/file_header_select_title"
android:summary="@string/file_header_select_summary"
android:persistent="false" >
</Preference>
<com.cherish.settings.preferences.CustomSeekBarPreference
android:key="status_bar_custom_header_shadow"
android:title="@string/status_bar_custom_header_shadow_title"
android:max="100"
settings:min="0"
android:defaultValue="0"
settings:units="%" />
</PreferenceScreen>