84

任何人都知道我们如何以编程方式从应用程序中删除通知,这被称为使用挂起意图。

我曾经使用以下方法取消通知。

AlarmManager am=(AlarmManager)getSystemService(Context.ALARM_SERVICE);
Intent intent = new Intent(Display.this, TwoAlarmService.class);
PendingIntent pi = PendingIntent.getBroadcast(Display.this, AlarmNumber, intent, PendingIntent.FLAG_CANCEL_CURRENT);
am.cancel(pi);

但问题是已经触发但未从通知栏中删除的通知。

提前致谢...

在此处输入图像描述

4

5 回答 5

227

也许试试这个:

NotificationManager notificationManager = (NotificationManager) getApplicationContext().getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.cancel(NOTIFICATION_ID);

或者,您也可以这样做以取消给定上下文中的所有通知:

notificationManager.cancelAll();

请参阅此文档链接:NotificationManager

于 2013-10-09T09:52:10.597 回答
16

我相信最近更新的做法(Kotlin 和 Java)应该这样做:

NotificationManagerCompat.from(context).cancel(NOTIFICATION_ID)

或者取消所有通知是:

NotificationManagerCompat.from(context).cancelAll()

为 AndroidX 或支持库制作。

于 2020-08-20T09:12:30.057 回答
7

通知保持可见,直到发生以下情况之一:

用户可以单独或使用“全部清除”(如果可以清除通知)来关闭通知。用户单击通知,您在创建通知时调用了 setAutoCancel()。您为特定的通知 ID 调用 cancel()。此方法还会删除正在进行的通知。您调用 cancelAll(),它会删除您之前发出的所有通知。如果在使用 setTimeoutAfter() 创建通知时设置了超时,系统会在指定的持续时间过后取消通知。如果需要,您可以在指定的超时持续时间过去之前取消通知

public void cancelNotification() {

    String ns = NOTIFICATION_SERVICE;
    NotificationManager nMgr = (NotificationManager) getActivity().getApplicationContext().getSystemService(ns);
    nMgr.cancel(NOTIFICATION_ID);
}
于 2018-01-19T11:50:31.050 回答
3

所有通知(甚至是其他应用程序通知)都可以通过监听NotificationListenerService 实现中提到的“NotificationListenerService”来删除

在服务中你必须调用cancelAllNotifications()

必须通过“应用程序和通知”->“特殊应用访问”->“通知访问”为您的应用程序启用该服务。

添加到清单:

    <activity android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <service android:label="Test App" android:name="com.test.NotificationListenerEx" android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE">
        <intent-filter>
            <action android:name="android.service.notification.NotificationListenerService" />
        </intent-filter>
    </service>

然后在代码中;

public class NotificationListenerEx extends NotificationListenerService {


public BroadcastReceiver broadcastReceiver = new BroadcastReceiver() {
    @Override
    public void onReceive(Context context, Intent intent) {
        NotificationListenerEx.this.cancelAllNotifications();
    }
};


@Override
public void onNotificationPosted(StatusBarNotification sbn) {
    super.onNotificationPosted(sbn);
}

@Override
public void onNotificationRemoved(StatusBarNotification sbn) {
    super.onNotificationRemoved(sbn);
}

@Override
public IBinder onBind(Intent intent) {
    return super.onBind(intent);
}

@Override
public void onDestroy() {
    unregisterReceiver(broadcastReceiver);
    super.onDestroy();
}

@Override
public void onCreate() {
    super.onCreate();
    registerReceiver(broadcastReceiver, new IntentFilter("com.test.app"));
}

之后使用广播接收器触发清除所有。

按照上面的代码触发广播使用;

getContext().sendBroadcast(new Intent("com.test.app"));
于 2018-08-17T07:47:22.837 回答
2

对于那些使用(通过子类)Service该类并使用以下方法运行它的人:

final Intent serviceIntent = new Intent(context, YourNotificationService.class);
ContextCompat.startForegroundService(context, serviceIntent);

你可以像这样关闭它:

context.stopService(new Intent(context, YourNotificationService.class));
于 2021-06-01T12:47:49.437 回答