Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

On the iPhone, you can add a numbered badge to the application icon. On BlackBerry, I've successfully painted an image onto the application's icon while in the program. I want to do this for Android as well. I don't want to use the notification bar, as it's not something that needs to be notified instantly. Instead, I just want the user to be able to see how many new messages are in the application just by looking at the application icon.

share|improve this question
did you find a solution to this ? – Mina Samy Sep 6 '11 at 8:41

1 Answer

up vote 15 down vote accepted

Unfortunately, Android does not allow changing of the application icon because it's sealed in the APK once the program is compiled. There is no way to programmatically change it to a 'drawable'.

You may achieve your goal by using a widget instead of an icon. Widgets are highly customisable and can do what you want.

There's a short discussion about the difference between iPhone icon notification and using widgets here:

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

As you'll notice, there is virtually no difference between using a widget or an icon, since they can be the same size and look the same.

share|improve this answer
1  
+1, a widget is what is required for groomsy's needs. – Donal Rafferty May 25 '10 at 14:45
Are you certain that there isn't a way to hijack the Launcher's home screen and bit-blt a badge onto the image?? I want the same functionality and an appwidget is a different solution to a different problem. Anyone can throw away my widget, but unless they uninstall the App, the icon remains true forever. Any OS level changes in Gingerbread since this question was asked back in Eclair/Froyo days?? – mobibob Feb 9 '11 at 1:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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