up vote 11 down vote favorite
4
share [g+] share [fb]

Is it possible to change an application icon directly from the program?
I mean, change icon.png in the res\drawable folder.
I would like to let users to change application's icon from the program so next time they would see the previously selected icon in the launcher.

link|improve this question

feedback

3 Answers

up vote 14 down vote accepted

You cannot change the manifest or the resource in the signed-and-sealed APK, except through a software upgrade.

link|improve this answer
I know this is an oldy, doubting between opening a new question and asking here, but here goes: is this still the case? The default 'mail' program (don't know if it is a 'sense' thing) on 2.2.1 changes the icon (or at least, ads an overlay for the number of unread messages) – Nanne Mar 22 '11 at 17:48
@Nanne: That's an app widget or home screen feature, not an application icon. You still cannot change the manifest or a resource except via a software upgrade. – CommonsWare Mar 22 '11 at 23:46
It is what I get when I add the app 'mail' to the homescreen, so if it is a widget, It has a method to add itself when I choose the app. But it might just be a sense thing. – Nanne Mar 23 '11 at 7:40
@Nanne: Just because Sense advertises it as a widget does not mean it is a widget. – CommonsWare Mar 23 '11 at 10:34
1  
? No, I mean the other way around: its not (advertised as) a widget. I add it as an app shortcut. But, as you say, just because this nonstock stuff implies its just an icon, that doesn't mean it is :) – Nanne Mar 23 '11 at 10:50
feedback

Assuming you mean changing the icon shown on the home screen, this could easily be done by creating a widget that does exactly this. Here's an article that demonstrate how that can be accomplished for a "new messages" type application similar to iPhone:

http://www.cnet.com/8301-19736_1-10278814-251.html

link|improve this answer
feedback

Programatically, you may want to publish the application launcher yourself :

In your AndroidManifest.xml, add :

<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/>

Then you need create your app launcher intent:

Intent myLauncherIntent = new Intent();
myLauncherIntent.setClassName("your.package.name", "YourLauncherActivityName");
myLauncherIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

Create an install shortcut intent with your app launcher and custom icon:

Intent intent = new Intent();
intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, myLauncherIntent);
intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "Application Name");
intent.putExtra
       (
        Intent.EXTRA_SHORTCUT_ICON_RESOURCE,
        Intent.ShortcutIconResource.fromContext
                                    (
                                         getApplicationContext(), 
                                         R.drawable.app_icon
                                    )
       );
intent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");

And finally launch the broadcast intent:

getApplicationContext().sendBroadcast(intent);
link|improve this answer
nothing happend with this – nimi Mar 24 '11 at 5:15
Check out the API demo at: developer.android.com/resources/samples/ApiDemos/src/com/… – James Oltmans Jun 24 '11 at 5:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.