我一直在搜索这个问题差不多一天,我在这里关注了Android Notification的示例:http://www.vogella.com/articles/AndroidNotifications/article.html。它工作得很好,我可以发送Notification
。问题是,当我点击通知时,即使我已设置:
setAutoCancel(true)
和notification.flags |= Notification.FLAG_AUTO_CANCEL
更新:这是我的代码
Intent intent = new Intent(MyNotification.this, NotificationReceiver.class);
PendingIntent pIntent = PendingIntent.getActivity(
MyNotification.this, 0, intent, 0);
NotificationCompat.Builder builder =
new NotificationCompat.Builder(MyNotification.this)
.setSmallIcon(R.drawable.ic_launcher)
.setAutoCancel(true)
.addAction(R.drawable.ic_launcher, "Call", pIntent)
.addAction(R.drawable.ic_launcher, "More", pIntent)
.addAction(R.drawable.ic_launcher, "And more", pIntent)
.setContentTitle("New mail from " + "test@gmail.com")
.setContentText("Subject");
Notification noti = builder.build();
noti.flags |= Notification.FLAG_AUTO_CANCEL;
NotificationManager notificationManager =
(NotificationManager) getSystemService(NOTIFICATION_SERVICE);
notificationManager.notify(0, noti);
问题来自哪里?谢谢你的帮助。
答案 0 :(得分:6)
使用此.. ..
notification.flags = Notification.DEFAULT_LIGHTS | Notification.FLAG_AUTO_CANCEL
Android notification doesn't disappear after clicking the notifcation
答案 1 :(得分:1)
尝试删除:
noti.flags |= Notification.FLAG_AUTO_CANCEL;
它应该没有noti.flags。
在NotificationCompat中使用标志的新方法是使用已定义的方法,例如setAutoCancel(true)。