Feature: reticker [2/2]

Signed-off-by: Hưng Phan <phandinhhungvp2001@gmail.com>
This commit is contained in:
Dil3mm4
2022-09-10 12:52:28 +08:00
committed by Hưng Phan
parent 6eb30ad778
commit 678bd548a3
2 changed files with 20 additions and 0 deletions

View File

@@ -645,5 +645,12 @@
<!-- Fingerprint Ripple Effect -->
<string name="enable_fingerprint_ripple_effect_title">Ripple effect</string>
<string name="enable_fingerprint_ripple_effect_summary">Show ripple effect on unlock with fingerprint</string>
<!-- reTicker -->
<string name="reticker_category" translatable="false">reTicker</string>
<string name="reticker_title">reTicker</string>
<string name="reticker_summary">Replace heads-up notification with slim and less invasive version of redesigned ticker</string>
<string name="reticker_colored_title">Use app colored background</string>
<string name="reticker_colored_summary">Replace reTicker background color using notification app main color</string>
</resources>

View File

@@ -82,6 +82,19 @@
android:title="@string/toast_icon_title"
android:summary="@string/toast_icon_summary"
android:defaultValue="true"/>
<com.cherish.settings.preferences.SystemSettingSwitchPreference
android:key="reticker_status"
android:title="@string/reticker_title"
android:summary="@string/reticker_summary"
android:defaultValue="false" />
<com.cherish.settings.preferences.SystemSettingSwitchPreference
android:dependency="reticker_status"
android:key="reticker_colored"
android:title="@string/reticker_colored_title"
android:summary="@string/reticker_colored_summary"
android:defaultValue="false" />
</PreferenceCategory>