Hi xda
I found very simple way to get tinted navbar color to status bar color in some popular apps like Gmail, YouTube, DropBox. This not affect to all apps.
And I'm sorry if this is repost :angel:
Requirements:
- Know how to decompile recompile
- ApkTool
- Java installed
- Notepad++
- framework-res.apk
Steps:
1. Decompile framework-res.apk
2. Open res/values/styles.xml
3. Search
scroll down until you find
change it to
4. Search
scroll down until you find
change it to
5. Search
scroll down until you find
change it to
6. Recompile, sign, push it to system.
ONLY TESTED ON CM12, CM12.1, RR, PA. BUT I THINK IT'LL WORK ALSO ON STOCK ROM
BEFORE

AFTER

I found very simple way to get tinted navbar color to status bar color in some popular apps like Gmail, YouTube, DropBox. This not affect to all apps.
And I'm sorry if this is repost :angel:
Requirements:
- Know how to decompile recompile
- ApkTool
- Java installed
- Notepad++
- framework-res.apk
Steps:
1. Decompile framework-res.apk
2. Open res/values/styles.xml
3. Search
Code:
<style name="Theme">Code:
<item name="statusBarColor">@color/black</item>
<item name="navigationBarColor">@color/black</item>Code:
<item name="statusBarColor">?colorPrimaryDark</item>
<item name="navigationBarColor">?colorPrimaryDark</item>4. Search
Code:
<style name="Theme.Material" parent="@style/Theme">Code:
<item name="statusBarColor">?colorPrimaryDark</item>
<item name="navigationBarColor">@color/black</item>Code:
<item name="statusBarColor">?colorPrimaryDark</item>
<item name="navigationBarColor">?colorPrimaryDark</item>5. Search
Code:
<style name="Theme.Material.Light" parent="@style/Theme.Light">Code:
<item name="statusBarColor">?colorPrimaryDark</item>
<item name="navigationBarColor">@color/black</item>Code:
<item name="statusBarColor">?colorPrimaryDark</item>
<item name="navigationBarColor">?colorPrimaryDark</item>6. Recompile, sign, push it to system.
ONLY TESTED ON CM12, CM12.1, RR, PA. BUT I THINK IT'LL WORK ALSO ON STOCK ROM
BEFORE
AFTER
Aucun commentaire:
Enregistrer un commentaire