[android-developers] Re: Notification manager question

2010-04-01 Thread guru
Hi TreKing/Mark, In my scenario, after completion of one notification, another notification should start updateCompletedNotification {--1 notificationmgr.nofify(120,intent); } updateIncomingFileConfirmNotification { --2 notificationmgr.nofify(120,intent); } after

Re: [android-developers] Re: Notification manager question

2010-04-01 Thread ~ TreKing
On Thu, Apr 1, 2010 at 5:46 AM, guru guru.nav...@gmail.com wrote: after 2nd function notiifes, then 1st function should start... how this can be handled? can I use same ID 120 for both functions? if i update number field, it is not updating the status bar I'm confused on what you're

[android-developers] Re: Notification manager question

2010-03-31 Thread guru
Hi Treking, I didnt same may as you and mark told. first time it is not displaying number. if i restart my application then it will display the number. what i need to do to get desired behavior... without restarting... Regards gururaja B O On Mar 30, 2:35 am, ~ TreKing treking...@gmail.com

Re: [android-developers] Re: Notification manager question

2010-03-31 Thread Mark Murphy
guru wrote: Hi Treking, I didnt same may as you and mark told. first time it is not displaying number. if i restart my application then it will display the number. what i need to do to get desired behavior... without restarting... I pointed you to an app that does this.

Re: [android-developers] Re: Notification manager question

2010-03-31 Thread ~ TreKing
On Wed, Mar 31, 2010 at 6:36 AM, guru guru.nav...@gmail.com wrote: first time it is not displaying number. if i restart my application then it will display the number. To add to what Mark already posted, it's amazing what you can learn by reading the official documentation:

[android-developers] Re: Notification manager question

2010-03-29 Thread guru
Hi Mark, I am facing problem in having single icon on status bar with number of particular notification occurrence. ex: ICON(3)... i made below changes... the number is coming but again multiple icons are coming up. What I have to need to achieve single icon and number of notification on the

Re: [android-developers] Re: Notification manager question

2010-03-29 Thread ~ TreKing
On Mon, Mar 29, 2010 at 4:37 AM, guru guru.nav...@gmail.com wrote: What I have to need to achieve single icon and number of notification on the status bar? Make sure you use the same ID when you call NotificationManager.notifiy().