Results 1 to 11 of 11
  1. Thread Author  Thread Author    #1  
    Brianbgrp's Avatar

    Posts
    88 Posts
    ROM
    oICSvs41, GladOS2.2

    Default Customizing question.

    Hmmm. Anyone know a relatively simple way for me to change Icons? I use go SMS....but the green just clashes way to hard with the pics colors. Wonderin a simple way to change the icon for it to something that matches

    Sent from my Nexus S 4G using Xparent Cyan Tapatalk
  2. #2  

    Default Re: Customizing question.

    Just find an icon you like and save it as a .png on your phone. Then go to the market and download and you'll be set. Use the icon you want as the icon and the app as the app. Pretty self explanatory. Hope I helped!
    Thanked by:
  3. Thread Author  Thread Author    #3  
    Brianbgrp's Avatar

    Posts
    88 Posts
    ROM
    oICSvs41, GladOS2.2

    Default

    Worked like a charm. No more ugly
    y green icons on my dock yay.
    Sent from my Nexus S 4G using Xparent Cyan Tapatalk
  4. #4  
    Skunkape60's Avatar
    Retired Ambassador

    Posts
    4,487 Posts

    Default Re: Customizing question.

    Where are the app icons stored on the phone? I don't want to replace them just do a little editing...
    Last edited by Skunkape60; 12-24-2011 at 12:40 PM.
    http://forums.androidcentral.com/signaturepics/sigpic70132_2.gif
  5. #5  

    Default

    Quote Originally Posted by Skunkape60 View Post
    Where are the app icons stored on the phone? I don't want to replace them just do a little editing...
    If you go into a root browser, go to system > app > select the app you want and hit explore > Res > drawable-hdpi you should be able to find the icon.png.

    Sent from my Nexus S 4G using Tapatalk
  6. #6  
    Paul627g's Avatar

    Posts
    13,349 Posts
    Global Posts
    13,813 Global Posts
    ROM
    Milestone 1/Lean Kernel

    Default Re: Customizing question.

    Quote Originally Posted by Skunkape60 View Post
    Where are the app icons stored on the phone? I don't want to replace them just do a little editing...
    App icons are part of each app themselves. The launcher holds some of them but they are normally controlled by the apps themselves.

    If you were to look inside say Mms.apk using 7zip you would go to the following location...

    /res/drawable-hdpi/

    ic_launcher_smsmms.png (That is your Mms) icon...

    Now this doesn't hold true for all icons, some maybe named "icon.png" or other names but you get the general idea... You would modify this image and just swap it out in the apk and flash it back to your device....
  7. #7  
    Skunkape60's Avatar
    Retired Ambassador

    Posts
    4,487 Posts

    Default

    Quote Originally Posted by Paul627g View Post
    App icons are part of each app themselves. The launcher holds some of them but they are normally controlled by the apps themselves.

    If you were to look inside say Mms.apk using 7zip you would go to the following location...

    /res/drawable-hdpi/

    ic_launcher_smsmms.png (That is your Mms) icon...

    Now this doesn't hold true for all icons, some maybe named "icon.png" or other names but you get the general idea... You would modify this image and just swap it out in the apk and flash it back to your device....
    I installed gosms from the market and can't even find the apk file for it.

    Sent from my Nexus S 4G using Tapatalk
    http://forums.androidcentral.com/signaturepics/sigpic70132_2.gif
  8. #8  
    Paul627g's Avatar

    Posts
    13,349 Posts
    Global Posts
    13,813 Global Posts
    ROM
    Milestone 1/Lean Kernel

    Default Re: Customizing question.

    Quote Originally Posted by Skunkape60 View Post
    I installed gosms from the market and can't even find the apk file for it.

    Sent from my Nexus S 4G using Tapatalk
    It will be in your /data/app/ folder since its a 3rd party app and not installed as part of the ROM.

    Using ES File Explorer just look for the "com.xxxxxxx.apk" that has the GO SMS icon in front of it...

    Just remember if/when an application gets updated it will erased whatever changes you have made. This is why I stopped doing modifications to certain frequently updated apps like Gmail or Maps in any themes I do because they are updated so often.
  9. #9  
    Skunkape60's Avatar
    Retired Ambassador

    Posts
    4,487 Posts

    Default

    Quote Originally Posted by Paul627g View Post
    It will be in your /data/app/ folder since its a 3rd party app and not installed as part of the ROM.

    Using ES File Explorer just look for the "com.xxxxxxx.apk" that has the GO SMS icon in front of it...

    Just remember if/when an application gets updated it will erased whatever changes you have made. This is why I stopped doing modifications to certain frequently updated apps like Gmail or Maps in any themes I do because they are updated so often.
    so how do i open up the apk to get the icon? I can't figure out how to explore the file with es file explorer.

    Sent from my Nexus S 4G using Tapatalk
    http://forums.androidcentral.com/signaturepics/sigpic70132_2.gif
  10. #10  
    Skunkape60's Avatar
    Retired Ambassador

    Posts
    4,487 Posts

    Default

    Ok i found the file but the only way to get into it is to extract. When extracted I can find the icon and edit it with photoshop. Put the icon back in the folder. But how do i get it back to a apk file. I can zip it but it's now a .zip file instead of apk. I could rename the extension to apk but am not sure that would work. Suggestions?

    Sent from my Nexus S 4G using Tapatalk
    http://forums.androidcentral.com/signaturepics/sigpic70132_2.gif
  11. #11  
    beezy's Avatar

    Posts
    2,457 Posts
    Global Posts
    2,458 Global Posts
    ROM
    Extra Crispy

    Default Re: Customizing question.

    Quote Originally Posted by Skunkape60 View Post
    so how do i open up the apk to get the icon? I can't figure out how to explore the file with es file explorer.

    Sent from my Nexus S 4G using Tapatalk
    I wouldn't edit apks on the phone I would pull them and use 7zip to open them up and mess around.
    Here's a easy way to pull apk from command line.

    Code:
    adb remount
    adb pull /system/app/name-of.apk
    adb pull /data/app/name-of.apk
    Dump all the apps in system or data
    Code:
    adb remount
    adb pull /system/app
    adb pull /data/app
    To push them back it would be
    Code:
    adb remount
    adb push name-of.apk /system/app
    adb push name-of.apk /data/app
    You can also use root explorer,es file manager(with root) to copy the apks onto the sdcard and pull them to your pc that way.Have a good nadroid to get you out of any trouble you have or keep a original copy and push it back if things get messed up. Remember reboot after pushing to see the changes.
    Thanked by:

Posting Permissions