Notification deleteIntent does not work
问题 I've read several questions concerning similair issues, but they do not provide me with the solution. In my Android app I fire off a notification (in the Application class to be specific, which is actually started from a C2DM push event). I then want to receive an Intent when the "clear all" button is pressed on the notifications: notification.deleteIntent = PendingIntent.getService(this, 0, new Intent(this, NotificationDeleteReceiver.class), 0); In my NotificationDeleteReceiver.class I got