ICS - Little theming but doesn't work - Android Themes

Hello, I'm pretty noob on theming...
I have a HTC Desire with a custom ICS ROM, no problem
I want to change some status bar notification icons:
- Icon for GPS
- Icon for new mail from gmail
- Icon for new chat message
- Icon for missed call
So I extracted the apk framework-res.apk from the system/framework directory via ADB
In the apk, I replaced the files:
\res\drawable-hdpi\stat_sys_gps_on.png
\res\drawable-hdpi\stat_notify_chat.png
\res\drawable-hdpi\stat_notify_missed_call.png
\res\drawable-hdpi\stat_notify_gmail.png
with my custom icons
then I pushed back the framework-res.apk at his place
Problem: Only the GPS icon is replaced... where did i messed up ?
Best regards

Oligoy said:
Hello, I'm pretty noob on theming...
I have a HTC Desire with a custom ICS ROM, no problem
I want to change some status bar notification icons:
- Icon for GPS
- Icon for new mail from gmail
- Icon for new chat message
- Icon for missed call
So I extracted the apk framework-res.apk from the system/framework directory via ADB
In the apk, I replaced the files:
\res\drawable-hdpi\stat_sys_gps_on.png
\res\drawable-hdpi\stat_notify_chat.png
\res\drawable-hdpi\stat_notify_missed_call.png
\res\drawable-hdpi\stat_notify_gmail.png
with my custom icons
then I pushed back the framework-res.apk at his place
Problem: Only the GPS icon is replaced... where did i messed up ?
Best regards
Click to expand...
Click to collapse
Not every image will be found in the framework-res.apk so you need to pull apart a few apks to find the image you're after.

Thanks,
Oh I see... it's strange because I actualy found the images in framework-res.apk
So they are in another file too... I'm going to look for them
I someone knows the place to look for...

Oligoy said:
Thanks,
Oh I see... it's strange because I actualy found the images in framework-res.apk
So they are in another file too... I'm going to look for them
I someone knows the place to look for...
Click to expand...
Click to collapse
I don't own an HTC device so I don't know off the top of head, but Im pretty sure the other apk is called HTC resources or something.

Oligoy said:
Oh I see... it's strange because I actualy found the images in framework-res.apk
Click to expand...
Click to collapse
There are lots of images in there that aren't used by the system for whatever reason, so while they may look the same, doesn't mean it's what you're looking for.
Oligoy said:
I someone knows the place to look for...
Click to expand...
Click to collapse
But much more rewarding to find it by yourself.

I looked into ALL the apks of the ROM and can't find others files corresponding :-/

But you're not using a theme, right? :laugh:
These icons are normally located in framework-res.apk/systemui.apk/any device specific resource file.
Do you looked into systemui? There should be at least the icons, even if they're not used.

cakebomb said:
But you're not using a theme, right? :laugh:
These icons are normally located in framework-res.apk/systemui.apk/any device specific resource file.
Do you looked into systemui? There should be at least the icons, even if they're not used.
Click to expand...
Click to collapse
No, I'm not using a theme, I just want to change 4 statut bar icons
And yes I looked into systemui, but the icons are not inside

The gmail icon will need to be changed in the gmail.apk have you looked in there?
Sent from my Phone.

Oligoy said:
Hello, I'm pretty noob on theming...
I have a HTC Desire with a custom ICS ROM, no problem
I want to change some status bar notification icons:
- Icon for GPS
- Icon for new mail from gmail
- Icon for new chat message
- Icon for missed call
So I extracted the apk framework-res.apk from the system/framework directory via ADB
In the apk, I replaced the files:
\res\drawable-hdpi\stat_sys_gps_on.png
\res\drawable-hdpi\stat_notify_chat.png
\res\drawable-hdpi\stat_notify_missed_call.png
\res\drawable-hdpi\stat_notify_gmail.png
with my custom icons
then I pushed back the framework-res.apk at his place
Problem: Only the GPS icon is replaced... where did i messed up ?
Best regards
Click to expand...
Click to collapse
try looking in the contacts or phone apks for missed call, gmail in gmail and chat in talk....
if they are not in the framework or system ui....they are in the apk that controls the image being used.....

jasonevil said:
try looking in the contacts or phone apks for missed call, gmail in gmail and chat in talk....
if they are not in the framework or system ui....they are in the apk that controls the image being used.....
Click to expand...
Click to collapse
Yeah I found gmail notification icon in the gmail.apk :victory:
Thanks XperienceD and jasonevil
But others... are nowhere, I looked in all apks... the only ones are in framework-res but mod them don't make any change :crying:

Oligoy said:
Yeah I found gmail notification icon in the gmail.apk :victory:
Thanks XperienceD and jasonevil
But others... are nowhere, I looked in all apks... the only ones are in framework-res but mod them don't make any change :crying:
Click to expand...
Click to collapse
missed call is in framework. make sure you are coding it right and that the file names matched.
in android.xml
Code:
<item name="drawable/stat_notify_missed_call">@drawable/stat_notify_missed_call</item>
i found the google talk chat icons in the drawable-xhdpi folder in the Talk.apk
your xml for that should be com_google_android_talk.xml
Code:
<item name="drawable/stat_notify_ongoing_audio_chat">@drawable/stat_notify_ongoing_audio_chat</item>
<item name="drawable/stat_notify_ongoing_video_chat">@drawable/stat_notify_ongoing_video_chat</item>
<item name="drawable/stat_notify_talk_audio">@drawable/stat_notify_talk_audio</item>
<item name="drawable/stat_notify_talk_text">@drawable/stat_notify_talk_text</item>
<item name="drawable/stat_notify_talk_video</item>

Related

Change statusbar color

Is there a way to change the color of the status bar ? Maybe some kind of app ?
Sent from my HTC Hero using XDA
App
yes there are many..
one of them is the search function
I'm gunna dredge this up because if you search "change status bar color" all you end up with is "show your home screen", a million threads on things with a title that has nothing to do with changing status bar colours and this thread.
How about being helpful for the new-to-android types that don't know what metamorph is and provide a link?
blakamin said:
I'm gunna dredge this up because if you search "change status bar color" all you end up with is "show your home screen", a million threads on things with a title that has nothing to do with changing status bar colours and this thread.
How about being helpful for the new-to-android types that don't know what metamorph is and provide a link?
Click to expand...
Click to collapse
I used google and found a link fairly quick but since I'm new and I can't post a link, I guess your just going to need to search using this phrase "how to use metamorph XDA". It should be the first link...
Change statusbar_background.png in framework-res.apk and push it back to your phone in Recovery
Or create a metamorph for it
mangus7175 said:
I used google and found a link fairly quick but since I'm new and I can't post a link, I guess your just going to need to search using this phrase "how to use metamorph XDA". It should be the first link...
Click to expand...
Click to collapse
Yeah, I've done it. I just meant that the reply (especially from someone with a donate button!) to the OP could be more helpful for people new to android.
Since it is possible to change the color of the status bar, is it also possible to change the color of the settings screen? This screen is white on black on my HTC evo (and I think other devices). I would like to change it to black on white or so. I searched a lot, but couldn't find any method how to do this. Thanks again for any ideas!
I guess it is not possible?
Sent from my PC36100 using XDA App
palmdude said:
I guess it is not possible?
Sent from my PC36100 using XDA App
Click to expand...
Click to collapse
it's all in the framework-res apk
palmdude said:
I guess it is not possible?
Sent from my PC36100 using XDA App
Click to expand...
Click to collapse
the status bar is an image found in framework-res.apk /res/drawable-hdpi/
statusbar_background.png - status bar image. change it in photoshop to what you like. it's not a "color," so you can change the image to have a shadow, a design, whatever you like.
just keep in mind that if you make it transparent (like i did)...it may not work well with other apps on your phone (i.e. you'll see the apps background through the bar on top, not always a good thing!
dont confuse it with status_bar_background.png, which is the background file for your notification drawer.
UOT Kitchen: http://circle.glx.nl/
yer welcome
Many thanks! I will try to find this in the file you mentioned. Basically I will change that background with white.
Max_Pain said:
the status bar is an image found in framework-res.apk /res/drawable-hdpi/
statusbar_background.png - status bar image. change it in photoshop to what you like. it's not a "color," so you can change the image to have a shadow, a design, whatever you like.
just keep in mind that if you make it transparent (like i did)...it may not work well with other apps on your phone (i.e. you'll see the apps background through the bar on top, not always a good thing!
dont confuse it with status_bar_background.png, which is the background file for your notification drawer.
Click to expand...
Click to collapse
Sent from my PC36100 using XDA App
To change the text colors, you must first find the correct xml file to what you wish to change.
Decompile framework-res.apk with ApkManager
go in Folder layout, and search
status_bar_latest_event_content.xml
status_bar_expanded.xml
status_bar.xml
Click to expand...
Click to collapse
Edit with Notpad++ the Colors!!
Compile framework-res.apk and Copy new Files in your framework-res.apk Signed File and Copy your Phone!!
Thanks guys! I haven't tried it yet, but this is exactly the answer I have looking for !!
Now I just need to find a few hours of free time to learn/do this compiling/decompiling stuff. But I am confident
Sent from my PC36100 using XDA App
Wow I need to try this.
LostEden said:
Decompile framework-res.apk with ApkManager
go in Folder layout, and search
Edit with Notpad++ the Colors!!
Compile framework-res.apk and Copy new Files in your framework-res.apk Signed File and Copy your Phone!!
Click to expand...
Click to collapse
In these files I can not find options for changing the color of hours.
LostEden said:
Decompile framework-res.apk with ApkManager
go in Folder layout, and search
Edit with Notpad++ the Colors!!
Compile framework-res.apk and Copy new Files in your framework-res.apk Signed File and Copy your Phone!!
Click to expand...
Click to collapse
decompile or extract? apk manager has two options
NXUS said:
decompile or extract? apk manager has two options
Click to expand...
Click to collapse
You have to decompile to be able to edit xml files. One of those three files mentioned to search for(status bar expand) causes my phone to boot loop when I edit it. Is it linked to some other file that must also be edited?
LostEden said:
Decompile framework-res.apk with ApkManager
go in Folder layout, and search
Edit with Notpad++ the Colors!!
Compile framework-res.apk and Copy new Files in your framework-res.apk Signed File and Copy your Phone!!
Click to expand...
Click to collapse
Can someone please explain how to edit the colors in notepad++ with this method ?
Much thanks !!

[Q] How to mod framework-res.apk and twframework-res.apk

Hi guys,
Wondering if someone can give me some clear directions how to add battery icons (knowing that the resource IDs of the images are not stored in public.xml - it doesn't exist in samsung's framework-res.apk) and how can I change text colors (basically replace black with white and vice versa) and where should I change these values.
Thanks a lot!
Common themers, I know you know, you just don't wanna share
Joking I would really like to start themeing as well and these are the only 2 issues that I have at the moment.
icezar1 said:
Common themers, I know you know, you just don't wanna share
Joking I would really like to start themeing as well and these are the only 2 issues that I have at the moment.
Click to expand...
Click to collapse
http://forum.xda-developers.com/showthread.php?t=724778
Get apk manger.I'm trying to do this too.
Hm, I did, I de-compiled the apk but did not want to compile back. Probably the images are not Draw 9-patch-ed. However, I still need to find out how to change the text color...
icezar1 said:
Hm, I did, I de-compiled the apk but did not want to compile back. Probably the images are not Draw 9-patch-ed. However, I still need to find out how to change the text color...
Click to expand...
Click to collapse
find you find out before keep me updated, and i'll do the same.
icezar1 said:
Hi guys,
Wondering if someone can give me some clear directions how to add battery icons (knowing that the resource IDs of the images are not stored in public.xml - it doesn't exist in samsung's framework-res.apk) and how can I change text colors (basically replace black with white and vice versa) and where should I change these values.
Thanks a lot!
Click to expand...
Click to collapse
You can change the battery icons in the framework-res.apk [look in the res/drawable hdpi/stat_sys_battery_x.png
and to change the text color: I was trying to figure that one out last week....From what I figured out you need to modify:
res/layout/status_bar_latest_event_content.xml
Which is found in your framework-res.apk aswell....Decomplie-edit-recomplie....
Good luck
what program are you using to edit your xml's?
chaosjh said:
what program are you using to edit your xml's?
Click to expand...
Click to collapse
apk_manager_4.9 to decomplie-recomplie. Then use notepad to edit
i change icons and stuff in framework by just using 7zip. No need to decompile or sign, or any of that. Super easy. Not sure about changing text color, tho.
If your just wanting to do simple changes (no .xml edits)
You can use WinRar to open the framework-res.apk and find the *.png's you want to replace.
Then copy/paste the new images over the old ones inside of WinRar.
Close.. and install.
But thats for quick and dirty changes. For more intricate stuff - animations etc. that require *.xml edits - do what the above folks say
No way..
OK, just decompiled-added icons from other decompiled framework-recompiled, no xml edits-installed. Look is changed, battery icons now displaying fine but... force closes and restarts the shell in less than 20 secs...
yup try the winrar method - there is no decompiling.. just copies the images into the *.apk
And shouldn't have any FC's if you try that method.
avgjoegeek said:
If your just wanting to do simple changes (no .xml edits)
You can use WinRar to open the framework-res.apk and find the *.png's you want to replace.
Then copy/paste the new images over the old ones inside of WinRar.
Close.. and install.
But thats for quick and dirty changes. For more intricate stuff - animations etc. that require *.xml edits - do what the above folks say
Click to expand...
Click to collapse
Yeah i changed icon with winRar, and all kinds of crazy stuff happed. Loop boots,and Fc
Have you guys figured out the text color yet? If you haven't let me know what text you're trying to change and I'll write something up in a few hours when I get off work.
Sent from my SAMSUNG-SGH-I897 using XDA App
fritzgerald said:
Have you guys figured out the text color yet? If you haven't let me know what text you're trying to change and I'll write something up in a few hours when I get off work.
Sent from my SAMSUNG-SGH-I897 using XDA App
Click to expand...
Click to collapse
i have tried for to days now to get these android faces icon for the battery.I've use winRar and it worked good for a few hours, but when i used cwm to backup my system on reboot it boot loop. I got apk manger and everytime I try to compile the apk there is a error.Oh changing the text color would be cool too!
dfuse06 said:
i have tried for to days now to get these android faces icon for the battery.I've use winRar and it worked good for a few hours, but when i used cwm to backup my system on reboot it boot loop. I got apk manger and everytime I try to compile the apk there is a error.Oh changing the text color would be cool too!
Click to expand...
Click to collapse
Shoot me a link to the icons you're trying to use. What ROM are you using(name & version). What text are you looking to change? There's not one global change to make all the text different I'll need to know what specifically you're trying to change.
I use the uot kitchen you get the icon on perception 7,but im on 8 now. I'm running perception 7 darknees 2.3 theme, and that is what i'm trying to get the icons on its the battery icon of the android smiley faces it is version j with white numbers. i'm going to look for a link for them.i have the framwork-res.apk with them in it.
When you recompile with APK Manager, a couple of things are very important to do:
1. Hit yes to "system app".
2. Hit yes to restoring the files:
-Open the "keep" folder and delete resources.arsc. Then delete anything you changed (if it's there).
3. Do NOT sign it.
It should work.
PuffinNugz said:
i change icons and stuff in framework by just using 7zip. No need to decompile or sign, or any of that. Super easy. Not sure about changing text color, tho.
Click to expand...
Click to collapse
Do you just individually edit each icon? Cause I can't find a way to copy in a folder. I'm pulling the icons from the 2.3 framework, but i just want to copy over the drawable folders for now.
TheEscapist said:
Do you just individually edit each icon? Cause I can't find a way to copy in a folder. I'm pulling the icons from the 2.3 framework, but i just want to copy over the drawable folders for now.
Click to expand...
Click to collapse
I just dragged the images from a particular themes framework and dropped them to the new one all within 7zip.

lg widget bar on custom rom

Hi all,
i need some help over here.
I've changed many, many things in my framework folder. Now the next step is to add the notifications bar toggles from lg-res.apk
I took one prebaked lg-res.apk and modified it a bit. Then i zipped it into my rom, but no toggles jet...
My guess is that there are more files to edit to get the toggles working.
Can somebody help me out a little bit.
Every time i give up and post a question how to fix something, i emediatly find a fix..... So i have my toggles working, but want te remove the music widget. How can i decompile the .xml file to remove the lines from there ?
you edit the xml with notepad, you don't decompile an xml
Mjuksel said:
you edit the xml with notepad, you don't decompile an xml
Click to expand...
Click to collapse
ok ok, i decompiled framework-res then edited the xml file, but now i've got some bootloops
could you tell us how you got the toggles working???
can you take these out of the original rom and put them in another?
monkeytown said:
could you tell us how you got the toggles working???
can you take these out of the original rom and put them in another?
Click to expand...
Click to collapse
i extracted the lg-res.apk from a basic rom, edited it and placed in my framework folder.
Then i copied the file: status_bar_extended.xml from framework-res.apk to my own framework-res.apk.
That worked, but the carrier bar is now empty and i don't have a solution for that right now.
peewster said:
Hi all,
Every time i give up and post a question how to fix something, i emediatly find a fix..... So i have my toggles working, but want te remove the music widget. How can i decompile the .xml file to remove the lines from there ?
Click to expand...
Click to collapse
to remove the music widget buttons, you need lg music installed.
you can remove the buttons in menu of lg music ...
peewster said:
i extracted the lg-res.apk from a basic rom, edited it and placed in my framework folder.
Then i copied the file: status_bar_extended.xml from framework-res.apk to my own framework-res.apk.
That worked, but the carrier bar is now empty and i don't have a solution for that right now.
Click to expand...
Click to collapse
how do you know, what "status_bar_...." files you need?? if i wanted to copy the status bar toggles from a working rom, should i copy all staus_bar_ files i find?
monkeytown said:
how do you know, what "status_bar_...." files you need?? if i wanted to copy the status bar toggles from a working rom, should i copy all staus_bar_ files i find?
Click to expand...
Click to collapse
Well i think i had some stupid luck , just looked at all the file names and picked the one that looked the most logical to me
oh i see
but let me take a guess, you deal with the toggles to include them in your rom?
monkeytown said:
how do you know, what "status_bar_...." files you need?? if i wanted to copy the status bar toggles from a working rom, should i copy all staus_bar_ files i find?
Click to expand...
Click to collapse
It's just status_bar_expanded for the pull down, only one file.
@OP - Just change the height of the music control block to '0dip' in status_bar_expanded to hide the music controls - you can not remove them (but hide works fine). You do not need to use the LG Music app to do this.
Or search for my mod posted here and extract the status_bar_expanded xml.

[Q] Need to locate these files? Help please

Hi i would like some help which would be nice from any Theme Creator or Dev because they will probably know where to look.
So can anyone tell me which files need to be changed to make the volume & brightness bars in quicksettings pulldown bar to change the bar color? i have changed the color via framework, system ui or htc res, rosie, settings files but.... not sure which files i changed in what location that did that?
Also which file do i need to locate to change the button pressed on the home screen? Cause i wanna get rid of the green sense look to my phone, my phone is looking pretty modded & i know how to use Photoshop to change PNGs & know how to mod APKs too.
Any help would be great i have tried the search bar on here & also in google but didnt get any results & to be honest i know people on XDA will know this.... thanks in advance
The progress bar color in quick settings is defined by this file: common_progress_full.9.png (in SystemUI.apk/res/drawable-hdpi)
Are you using a Gingerbread 2.3.5 or Sense 3.5 rom? If yes, the button press color in the homescreens can't be changed. At the moment all available tools fail with decoding the images.
In Sense 2.1, you have to edit Rosie.apk. For Sense 3 (+ GB 2.3.3 or .4), fusion.apk has to be edited with m10 tool.
I can give you more details if you want to.
Thanks
Thanks for that but i cant locate it in my system ui/res/drawable-hdpi? i tried looking in htc/rs/draw-hdpi too? cant find that common_progress_full.9.png? could you check again for me or if have time upload the file? i cant see why it would be missing though?
I havent had a chance to mess with the m10 editor? is it easy enough to use when editing the fusion.apk?
I love XDA.... its the best for phone modding & has many helpful members
sigurd_LU said:
The progress bar color in quick settings is defined by this file: common_progress_full.9.png (in SystemUI.apk/res/drawable-hdpi)
Are you using a Gingerbread 2.3.5 or Sense 3.5 rom? If yes, the button press color in the homescreens can't be changed. At the moment all available tools fail with decoding the images.
In Sense 2.1, you have to edit Rosie.apk. For Sense 3 (+ GB 2.3.3 or .4), fusion.apk has to be edited with m10 tool.
I can give you more details if you want to.
Click to expand...
Click to collapse
I have changed the button press & also found the common_progress_full.9.png from another rom but if you or anyone else can post your common_progress_full.9.png (in SystemUI.apk/res/drawable-hdpi) so i can try there one cause the progress bar isnt looking normal? it looks mis-shapen? Thanks again
What Rom are you using? Could you upload your SystemUI, so I can take a look
sigurd_LU said:
What Rom are you using? Could you upload your SystemUI, so I can take a look
Click to expand...
Click to collapse
I am running LeeDroid 3.3.3 but with sense add-on & my own custom red or colored icons & look! I uploaded my Sys UI, take a look for me? but i dont think i it will work? it maybe something to do with the rosie? my bars in quick settings dont look solid any more, i can live with it though, pics attached.
deanr1977 said:
I am running LeeDroid 3.3.3 but with sense add-on & my own custom red or colored icons & look! I uploaded my Sys UI, take a look for me? but i dont think i it will work? it maybe something to do with the rosie? my bars in quick settings dont look solid any more, i can live with it though, pics attached.
Click to expand...
Click to collapse
Your issue us a bad. 9.PNG it looks like you tried to edit it without decompiling the apk and running the new image threw the draw9patch tool
zelendel said:
Your issue us a bad. 9.PNG it looks like you tried to edit it without decompiling the apk and running the new image threw the draw9patch tool
Click to expand...
Click to collapse
what would you recommend i do? is there a solution or is it stuck this way for good?
I have a similar problem for the common progress bar which im assuming is in framework. I have decompiled, changed images, recompiled but the images are still default green.
Im baffled...
Any theme guru out there to advise...?
Does anyone know which is the location. png for a change in the transparent dock that is rosie navi bar?
goran60 said:
Does anyone know which is the location. png for a change in the transparent dock that is rosie navi bar?
Click to expand...
Click to collapse
be a little more specific on what your using(rom, sense version,etc.)
rayford85 said:
be a little more specific on what your using(rom, sense version,etc.)
Click to expand...
Click to collapse
He wants a fully transparent rosie for RCMix Runny. I have something for you Have a look in my thread: http://forum.xda-developers.com/showthread.php?t=1291351
sigurd_LU said:
He wants a fully transparent rosie for RCMix Runny. I have something for you Have a look in my thread: http://forum.xda-developers.com/showthread.php?t=1291351
Click to expand...
Click to collapse
Nice work!!! Please tell me how you got it to work on runny. I would love to include this in my mods.
Sent from my Desire HD using XDA App
rayford85 said:
Nice work!!! Please tell me how you got it to work on runny. I would love to include this in my mods.
Sent from my Desire HD using XDA App
Click to expand...
Click to collapse
You have to load the Rosie.apk with m10 editor, then decompile the Rosie_navbar.m10 file and change the following opacity values from 1 to 0.0099999998. If you set them to 0, pressing on the buttons will have no effect.
thanks for this
MarylandCookie said:
I have a similar problem for the common progress bar which im assuming is in framework. I have decompiled, changed images, recompiled but the images are still default green.
Im baffled...
Any theme guru out there to advise...?
Click to expand...
Click to collapse
Do you mean the volume bars? if so just goto the UOT Kitchen & chage them in there, then flash them over your rom, or put the changes of your framework & system ui into your rom zip & flash your rom again?
goran60 said:
Does anyone know which is the location. png for a change in the transparent dock that is rosie navi bar?
Click to expand...
Click to collapse
Look here for rosie modding - http://forum.xda-developers.com/showthread.php?t=1210143
I have solved this thread problem if anyone has the same just change the common_music_progress_fill.9 this will change the volume bars in the status menu.
Hope this helps
MarylandCookie said:
I have a similar problem for the common progress bar which im assuming is in framework. I have decompiled, changed images, recompiled but the images are still default green.
Im baffled...
Any theme guru out there to advise...?
Click to expand...
Click to collapse
Progress_horizontal.xml in the drawable folder of framework-res.apk has to be changed
sigurd_LU said:
Progress_horizontal.xml in the drawable folder of framework-res.apk has to be changed
Click to expand...
Click to collapse
Nice one... only just seen your message lol
Fixed it as above

my unfinished green(?) theme

just to share idea, anyone have nice green icon for setting button and multi function button?
of coz, if anyone like it, i could upload it
i like the green color on the bar
plz upload it to use every one how like them
icons little updated, apk for those who want it, copy to /system/app, have to use with stock SystemUI.odex
green mutifunction icon still missing, anyone have idea?
I like it -- hi friend
green icons for u
just replace icons in(drawable-sw600dp-mdpi)
emprize said:
icons little updated, apk for those who want it, copy to /system/app, have to use with stock SystemUI.odex
green mutifunction icon still missing, anyone have idea?
Click to expand...
Click to collapse
still newbe:
i put the apk in /system/app this is quite clear,but what I have to do with SystemUI. odex? always scared about system files, for this really performing device
trocchietto said:
still newbe:
i put the apk in /system/app this is quite clear,but what I have to do with SystemUI. odex? always scared about system files, for this really performing device
Click to expand...
Click to collapse
in this case, dont touch the SystemUI.odex, leave that there, sometimes u need to rename it, but not in this apk, this apk need the SystemUI.odex
ssaass said:
I like it -- hi friend
green icons for u
just replace icons in(drawable-sw600dp-mdpi)
Click to expand...
Click to collapse
thx bro, glad u and others like this
here is little update for icons
cool,
compliment for the theme

Categories

Resources