[Q] Theming Problem | Changing Fonts Color

SpaceCaker

Senior Member
Mar 26, 2011
13,545
10,901
0
netherlands
www.youtube.com
Hi, can anyone tell me how to change these font color and the apk background ?





Thanks a million ! :D



Regards,
ImbaWind

For color changing the prmary
fonts

go to colors.xml of Framework-res.apk

then go look for thr #ffffffff color codes etc

wich are white ( dont know if i typed enough or tomuch ffff :p )

for changing background u need to do

HTML:
1. Decompile framework-res.apk
2. Navigate to res/values and open styles.xml
3. Locate <style name="Theme">
4. Replace
<item name="colorBackground">@color/background_dark</item>
with
<item name="colorBackground">@color/transparent</item>
5. Replace
<item name="windowBackground">@drawable/screen_background_dark</item>
with
<item name="windowBackground">@drawable/background</item>

6. Locate <style name="Theme.Black" parent="@style/Theme">
7. Replace
<item name="colorBackground">@color/black</item>
with
<item name="colorBackground">@color/transparent</item>
8. Replace
<item name="windowBackground">@color/black</item>
with
<item name="windowBackground">@drawable/background</item>

9. Create a 320X480 png to your liking, name it background.png and place it in drawable-mdpi folder
10. Recompile framework-res.apk