20

我在这里查看了所有其他 AUTO-CANCEL-not-working 问题,它们似乎都涉及我没有犯的错误。我都试过了

builder.setAutoCancel(true);

Notification notif = builder.build();
notif.flags |= Notification.FLAG_AUTO_CANCEL;

两者都不起作用。

我正在使用 NotificationCompat,因为我的最低 API 是 8。这是我的完整代码。在这个特定的通知中,我没有调用意图,因为我不需要用户做任何事情。

NotificationCompat.Builder builder = new NotificationCompat.Builder(this);
builder.setContentTitle(getString(R.string.app_name) + ": my title");
builder.setContentText(message);
builder.setSmallIcon(R.drawable.notification_icon);

Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.prog_icon);
builder.setLargeIcon(bitmap);

builder.setAutoCancel(true); // dismiss notification on user click

NotificationManager notiManager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
notiManager.notify(MY_NOTI_MANAGER_ID, builder.build());

通知显示得恰到好处。您可以滑动以清除它。但只需点击它并不会关闭通知。它只是点亮并停留在那里。

我的代码与此处发布的其他代码之间可能存在一些差异:1)我正在使用 NotificationCompat(这应该不会产生影响,但我们之前已经听说过)。2)由于我的通知很简单,我没有附加意图。

如果您有任何见解,请告诉我。

编辑:我的目的是在不使我的后台应用程序前景化的情况下关闭通知。

4

3 回答 3

28

所以显然你确实需要一个未决的意图。

Android - 通知管理器,有一个没有意图的通知,我找到了一个解决方案,它可以将当前活动的应用程序作为您的待处理意图(这样您就不必启动自己的活动来关闭通知)。

我刚刚添加了以下两行代码(在设置自动取消之后):

PendingIntent notifyPIntent = 
    PendingIntent.getActivity(getApplicationContext(), 0, new Intent(), 0);     
builder.setContentIntent(notifyPIntent);

效果很好。我想说,如果您不希望您的活动因用户单击您的通知而重新启动,那么这是您的最佳选择。

于 2013-04-24T16:06:56.937 回答
6

您似乎错过了PendingIntentandsetContentIntent()电话。我相信这是自动取消工作所必需的。

这是此示例项目Notification中的一些显示逻辑,该逻辑有效:

  private void raiseNotification(Intent inbound, File output, Exception e) {
    NotificationCompat.Builder b=new NotificationCompat.Builder(this);

    b.setAutoCancel(true).setDefaults(Notification.DEFAULT_ALL)
     .setWhen(System.currentTimeMillis());

    if (e == null) {
      b.setContentTitle(getString(R.string.download_complete))
       .setContentText(getString(R.string.fun))
       .setSmallIcon(android.R.drawable.stat_sys_download_done)
       .setTicker(getString(R.string.download_complete));

      Intent outbound=new Intent(Intent.ACTION_VIEW);

      outbound.setDataAndType(Uri.fromFile(output), inbound.getType());

      b.setContentIntent(PendingIntent.getActivity(this, 0, outbound, 0));
    }
    else {
      b.setContentTitle(getString(R.string.exception))
       .setContentText(e.getMessage())
       .setSmallIcon(android.R.drawable.stat_notify_error)
       .setTicker(getString(R.string.exception));
    }

    NotificationManager mgr=
        (NotificationManager)getSystemService(NOTIFICATION_SERVICE);

    mgr.notify(NOTIFY_ID, b.build());
  }
于 2013-04-23T22:09:27.483 回答
5

海亲爱的朋友,如果您想在特定时间显示不可取消的通知(用户不可取消),然后您需要清除它(如音乐播放器),您可以使用它。

mNotificationBuilder .setSmallIcon(android.R.drawable.btn_plus);
mNotificationBuilder .setContentTitle("My notification");
mNotificationBuilder .setContentText("Notificattion From service");
mNotificationBuilder .setLights(0xFF0000FF, 500, 500);

Notification note = mNotificationBuilder.build();  
note.flags = Notification.FLAG_ONGOING_EVENT; // For Non cancellable notification
mNotificationManager.notify(NOTIFICATION_ID, note);
于 2014-03-21T11:00:29.687 回答