[android-developers] clearing notification

2011-07-17 Thread kamiseq
hi, I ve searched for answer here but nothing seems to work as expected. I have a service that in onStartCommand sends notification, created as final Notification notification = new Notification(icon, notify_title, when); final Intent notificationIntent = new Intent(this, MyActivity.class);

Re: [android-developers] clearing notification

2011-07-17 Thread TreKing
On Sun, Jul 17, 2011 at 4:39 AM, kamiseq kami...@gmail.com wrote: and this is fine but in onDestroy I try to clear that notification, I thought that mNotificationManager.clear(SERVICE_STARTED_NOTIFICATION_ID) would be enough but it wasnt. Are you sure onDestroy is being called? And it should