Jump to content

[Taking Requests] Themes


Guest HMZX

Recommended Posts

Guest TheManicGibbon

Right maybe someone in this thread can help me. I want to change the colour of the text circled red in the screenshot (left is what I have now, right is what I want). I want the "Ongoing" and "Notifications" text from white to grey.

I've been trying for 4 days to do this unsuccessfully; I know I need to change styles.xml, but because this is one of the files that recompiles into resources.arsc etc etc....basically I've tried every tutorial out there, but when flashed, the phone fails to boot at some stage. Can someone please show me how to do this, step by step, but don't emit stages which you may see as obvious, because that may be the part I am missing!

This really is driving me mad, thanks to anyone who could help.

post-843502-1308323105_thumb.png post-843502-1308323219_thumb.jpg

Link to comment
Share on other sites

Right maybe someone in this thread can help me. I want to change the colour of the text circled red in the screenshot (left is what I have now, right is what I want). I want the "Ongoing" and "Notifications" text from white to grey.

I've been trying for 4 days to do this unsuccessfully; I know I need to change styles.xml, but because this is one of the files that recompiles into resources.arsc etc etc....basically I've tried every tutorial out there, but when flashed, the phone fails to boot at some stage. Can someone please show me how to do this, step by step, but don't emit stages which you may see as obvious, because that may be the part I am missing!

This really is driving me mad, thanks to anyone who could help.

post-843502-1308323105_thumb.png post-843502-1308323219_thumb.jpg

what rom or theme is that?

ill have a delve

Link to comment
Share on other sites

Right maybe someone in this thread can help me. I want to change the colour of the text circled red in the screenshot (left is what I have now, right is what I want). I want the "Ongoing" and "Notifications" text from white to grey.

I've been trying for 4 days to do this unsuccessfully; I know I need to change styles.xml, but because this is one of the files that recompiles into resources.arsc etc etc....basically I've tried every tutorial out there, but when flashed, the phone fails to boot at some stage. Can someone please show me how to do this, step by step, but don't emit stages which you may see as obvious, because that may be the part I am missing!

This really is driving me mad, thanks to anyone who could help.

post-843502-1308323105_thumb.png post-843502-1308323219_thumb.jpg

The title bar colour and background colour is in res/values/colors.xml

<?xml version="1.0" encoding="utf-8"?>

<resources>   

	<color name="titlebackgroundcolor">#3232CD</color>

	<color name="titletextcolor">#FFFF00</color>

</resources>

change the title colour as you wish

Link to comment
Share on other sites

Guest TheManicGibbon
what rom or theme is that?

ill have a delve

The first is GinerFLB, running a beta version of the new Gingerbread theme I'm working on.

The second is a screenshot from the Nexus S MCR

The title bar colour and background colour is in res/values/colors.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="titlebackgroundcolor">#3232CD</color>
<color name="titletextcolor">#FFFF00</color>
</resources>[/code] change the title colour as you wish As far as I know the value was in styles.xml, so I can change this colors.xml instead? Cheers! EDIT: Those values are not in my colours.xml, do I need to add them? I have:
[code]<?xml version="1.0" encoding="UTF-8"?>
<resources>
<color name="darker_gray">#ffaaaaaa</color>
<color name="white">#ffffffff</color>
<color name="black">#ff000000</color>
<color name="transparent">#00000000</color>
<color name="background_dark">#ff000000</color>
<color name="background_light">#ffffffff</color>
<color name="safe_mode_text">#80ffffff</color>
<color name="bright_foreground_dark">#ffffffff</color>
<color name="bright_foreground_dark_disabled">#80ffffff</color>
<color name="bright_foreground_dark_inverse">#ff000000</color>
<color name="dim_foreground_dark">#ffbebebe</color>
<color name="dim_foreground_dark_disabled">#80bebebe</color>
<color name="dim_foreground_dark_inverse">#ff323232</color>
<color name="dim_foreground_dark_inverse_disabled">#80323232</color>
<color name="hint_foreground_dark">#ff808080</color>
<color name="bright_foreground_light">#ff000000</color>
<color name="bright_foreground_light_inverse">#ffffffff</color>
<color name="bright_foreground_light_disabled">#80000000</color>
<color name="dim_foreground_light">#ff323232</color>
<color name="dim_foreground_light_disabled">#80323232</color>
<color name="dim_foreground_light_inverse">#ffbebebe</color>
<color name="dim_foreground_light_inverse_disabled">#80bebebe</color>
<color name="hint_foreground_light">#ff808080</color>
<color name="lighter_gray">#ffdddddd</color>
<color name="perms_dangerous_grp_color">#ffdd6826</color>
<color name="perms_dangerous_perm_color">#ffdd6826</color>
<color name="shadow">#cc222222</color>
<color name="search_url_text_normal">#ff7fa87f</color>
<item type="color" name="search_url_text_selected">@color/black</item>
<item type="color" name="search_url_text_pressed">@color/black</item>
<item type="color" name="search_widget_corpus_item_background">@color/lighter_gray</item>
<item type="color" name="sliding_tab_text_color_active">@color/black</item>
<item type="color" name="sliding_tab_text_color_shadow">@color/black</item>
<color name="keyguard_text_color_normal">#ffffffff</color>
<color name="keyguard_text_color_unlock">#ffa7d84c</color>
<color name="keyguard_text_color_soundoff">#ffffffff</color>
<color name="keyguard_text_color_soundon">#ffe69310</color>
<color name="keyguard_text_color_decline">#fffe0a5a</color>
<color name="config_defaultNotificationColor">#ff00ff00</color>
</resources>

Edited by TheManicGibbon
Link to comment
Share on other sites

The first is GinerFLB, running a beta version of the new Gingerbread theme I'm working on.

The second is a screenshot from the Nexus S MCR

As far as I know the value was in styles.xml, so I can change this colors.xml instead?

Cheers!

EDIT: Those values are not in my colours.xml, do I need to add them? I have:

<?xml version="1.0" encoding="UTF-8"?>

<resources>

	<color name="darker_gray">#ffaaaaaa</color>

	<color name="white">#ffffffff</color>

	<color name="black">#ff000000</color>

	<color name="transparent">#00000000</color>

	<color name="background_dark">#ff000000</color>

	<color name="background_light">#ffffffff</color>

	<color name="safe_mode_text">#80ffffff</color>

	<color name="bright_foreground_dark">#ffffffff</color>

	<color name="bright_foreground_dark_disabled">#80ffffff</color>

	<color name="bright_foreground_dark_inverse">#ff000000</color>

	<color name="dim_foreground_dark">#ffbebebe</color>

	<color name="dim_foreground_dark_disabled">#80bebebe</color>

	<color name="dim_foreground_dark_inverse">#ff323232</color>

	<color name="dim_foreground_dark_inverse_disabled">#80323232</color>

	<color name="hint_foreground_dark">#ff808080</color>

	<color name="bright_foreground_light">#ff000000</color>

	<color name="bright_foreground_light_inverse">#ffffffff</color>

	<color name="bright_foreground_light_disabled">#80000000</color>

	<color name="dim_foreground_light">#ff323232</color>

	<color name="dim_foreground_light_disabled">#80323232</color>

	<color name="dim_foreground_light_inverse">#ffbebebe</color>

	<color name="dim_foreground_light_inverse_disabled">#80bebebe</color>

	<color name="hint_foreground_light">#ff808080</color>

	<color name="lighter_gray">#ffdddddd</color>

	<color name="perms_dangerous_grp_color">#ffdd6826</color>

	<color name="perms_dangerous_perm_color">#ffdd6826</color>

	<color name="shadow">#cc222222</color>

	<color name="search_url_text_normal">#ff7fa87f</color>

	<item type="color" name="search_url_text_selected">@color/black</item>

	<item type="color" name="search_url_text_pressed">@color/black</item>

	<item type="color" name="search_widget_corpus_item_background">@color/lighter_gray</item>

	<item type="color" name="sliding_tab_text_color_active">@color/black</item>

	<item type="color" name="sliding_tab_text_color_shadow">@color/black</item>

	<color name="keyguard_text_color_normal">#ffffffff</color>

	<color name="keyguard_text_color_unlock">#ffa7d84c</color>

	<color name="keyguard_text_color_soundoff">#ffffffff</color>

	<color name="keyguard_text_color_soundon">#ffe69310</color>

	<color name="keyguard_text_color_decline">#fffe0a5a</color>

	<color name="config_defaultNotificationColor">#ff00ff00</color>

</resources>

If the values are in styles.xml, just modify that.

Link to comment
Share on other sites

Guest TheManicGibbon
If the values are in styles.xml, just modify that.

Yeah I have problems with xml files that recompile into resources.arsc, I ended up just manually editing services.jar to sort this. Cheers.

Link to comment
Share on other sites

Yeah I have problems with xml files that recompile into resources.arsc, I ended up just manually editing services.jar to sort this. Cheers.

oh lol. well if it worked then its all good :)

Link to comment
Share on other sites

  • 1 month later...

Yes,but I just wanted a clear status and notification bar :)

Like this :)

20___3_by_sammyr_se-d3c2114.png

edit:

OwPj5.png

Ok, finally made the status bar completely transparent!

For those who want it like mine you have to :

1- Go to http://uot.dakra.lt/kitchen/

2-Click on Kitchen >

3- Enable transparency in status bar

4- in Status Bar > Top Bar > FFFFFF and put on 0%

5-Go to FIle Upload and upload the "framework-res.apk" and "SystemUI.apk"

6-Click on Summary and then "submit work to kitchen"

7-Go to "pickup" and in a few minutes you can download your ZIP file (to flash on CWM) :)

8- Before flashing to go Martket and download "Multipicture Live Wallpaper", in "Multipicture Live Wallpaper" choose the picture you want to make as wallpaper , you have to do this because the transparency only works with live wallpapers (with me at least).

Flash it and it should be ok :)!

edit 2: Now I just want to know how to make the configuration menu like this but on the normal CM7 theme (this is MEIZU theme for CM7)

uUJQW.png

Edited by Migun
Link to comment
Share on other sites

edit 2: Now I just want to know how to make the configuration menu like this but on the normal CM7 theme (this is MEIZU theme for CM7)

uUJQW.png

the transparent background?

do you just want the settings app? or all the list view apps?

Edited by HMZX
Link to comment
Share on other sites

Guest Mushroom_Lord

Where do i get "framework-res.apk" and "SystemUI.apk" for ginger stir fry b17?

In your ROM's Zip file.

Extract it, and in /system/app/ you will find systemui.apk

In /system/framework/ you will frind framework-res.apk

Link to comment
Share on other sites

Thanks guys :D

Do I have to wipe anything in clockwork (dalvik, cache, etc) before applying the zip file I got from the kitchen?

Edited by Gx3k
Link to comment
Share on other sites

Thanks guys :D

Do I have to wipe anything in clockwork (dalvik, cache, etc) before applying the zip file I got from the kitchen?

dalvik is useful to wipe, but not necessary

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.