Cherish: Allow setting custom symbol near text on charging [2/2]

Signed-off-by: Hưng Phan <phandinhhungvp2001@gmail.com>
This commit is contained in:
neobuddy89
2021-01-25 23:25:05 +05:30
committed by Hưng Phan
parent ee57fca863
commit 8dbd03a32e
4 changed files with 39 additions and 0 deletions

View File

@@ -1254,4 +1254,17 @@
<item>1</item>
<item>2</item>
</string-array>
<!-- Status bar - Battery custom charging symbol -->
<string-array name="text_charging_symbol_entries" translatable="false">
<item>@string/text_charging_symbol_default</item>
<item>@string/text_charging_symbol_flash</item>
<item>@string/text_charging_symbol_tilde</item>
</string-array>
<string-array name="text_charging_symbol_values" translatable="false">
<item>0</item>
<item>1</item>
<item>2</item>
</string-array>
</resources>

View File

@@ -1178,4 +1178,11 @@
<!-- Power menu background opacity -->
<string name="power_menu_alpha_title">Power menu opacity</string>
<!-- Status bar - Battery custom charging symbol -->
<string name="text_charging_symbol_title">Custom charging symbol for text style</string>
<string name="text_charging_symbol_dialog">Custom charging symbol near battery percentage text</string>
<string name="text_charging_symbol_default">Disabled</string>
<string name="text_charging_symbol_flash">Flash</string>
<string name="text_charging_symbol_tilde">Tilde</string>
</resources>

View File

@@ -35,8 +35,18 @@
android:dialogTitle="@string/battery_percentage_title"
android:entries="@array/battery_percent_entries"
android:entryValues="@array/battery_percent_values"
android:summary="%s"
android:defaultValue="0" />
<com.cherish.settings.preferences.SystemSettingListPreference
android:key="text_charging_symbol"
android:title="@string/text_charging_symbol_title"
android:dialogTitle="@string/text_charging_symbol_dialog"
android:entries="@array/text_charging_symbol_entries"
android:entryValues="@array/text_charging_symbol_values"
android:summary="%s"
android:defaultValue="1" />
<com.cherish.settings.preferences.SystemSettingSwitchPreference
android:key="status_bar_battery_text_charging"
android:title="@string/battery_text_charging_title"