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.
| ||||
|
feedback
|
|
You cannot change the manifest or the resource in the signed-and-sealed APK, except through a software upgrade. | |||||||||||||
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: | |||
|
feedback
|
|
Programatically, you may want to publish the application launcher yourself : In your AndroidManifest.xml, add :
Then you need create your app launcher intent:
Create an install shortcut intent with your app launcher and custom icon:
And finally launch the broadcast intent:
| |||||
feedback
|