Hi!
Meet me again :p with a copy-paste simple mod tutorial (without editing any smali) to give ur SystemUI runtime theme accent color change
Screenshots:


Requirements:
- know how to decompile, recompile, sign apk
- original SystemUI.apk
Steps:
- decompile SystemUI.apk
- open /res/values/colors.xml, add this
- open /res/values/ids.xml, add this
- open /res/values/styles.xml
- find
- change
to
- find
- change
to
- open /res/drawable-xxhdpi, delete these png's
- open /res/drawable-hdpi, delete ic_tasklist_switch_normal.png
- download attached files, extract, merge it to ur decompiled SystemUI.apk
- save all changes, recompile, sign, push
- done
Note: Quick setting tile text isn't colored
Thanks to: Nathan Ali Ashari & serajr, as my inspirations ;)
Meet me again :p with a copy-paste simple mod tutorial (without editing any smali) to give ur SystemUI runtime theme accent color change
Screenshots:
Requirements:
- know how to decompile, recompile, sign apk
- original SystemUI.apk
Steps:
- decompile SystemUI.apk
- open /res/values/colors.xml, add this
PHP Code:
<color name="somc_color_accent_dark">@android:color/somc_color_accent_dark</color>
PHP Code:
<item type="id" name="theme_accent">false</item>
- find
PHP Code:
<style name="TextAppearance.StatusBar.Expanded.Clock"
PHP Code:
<item name="android:textColor">#ffffffff</item>
PHP Code:
<item name="android:textColor">@color/somc_color_accent_dark</item>
PHP Code:
<style name="TextAppearance.StatusBar.Expanded.Date"
PHP Code:
<item name="android:textColor">#b2ffffff</item>
PHP Code:
<item name="android:textColor">@color/somc_color_accent_dark</item>
Code:
ic_edit_settings
ic_qs_auto_sync_on
ic_qs_data_traffic_on
ic_qs_hotspot_on
ic_qs_lte_on
ic_qs_nfc_on
ic_qs_roaming
ic_qs_screen_mirroring_on
ic_qs_signal_in
ic_qs_signal_out
ic_qs_stamina_on
ic_qs_throw_on
ic_qs_volte_on
ic_qs_wifi_0
ic_qs_wifi_1
ic_qs_wifi_2
ic_qs_wifi_3
ic_qs_wifi_4
ic_qs_wifi_detail_empty
ic_qs_wifi_full_0
ic_qs_wifi_full_1
ic_qs_wifi_full_2
ic_qs_wifi_full_3
ic_qs_wifi_full_4
ic_qs_wifi_no_network- download attached files, extract, merge it to ur decompiled SystemUI.apk
- save all changes, recompile, sign, push
- done
Note: Quick setting tile text isn't colored
Thanks to: Nathan Ali Ashari & serajr, as my inspirations ;)
No comments:
Post a Comment