gpt4 book ai didi

java - 如何设置为 0 通知计数 android firebase

转载 作者:行者123 更新时间:2023-11-30 04:56:04 25 4
gpt4 key购买 nike

如何在打开应用程序后使用 firebase 设置为 0 通知计数 android?

是否有任何等同于 swift 的 applicationDidBecomeActive

UIApplication.shared.applicationIconBadgeNumber = 0

谢谢!

最佳答案

import android.app.NotificationManager;
import android.content.Context;

@Override
protected void onResume() {
super.onResume();

// Removing All Notifications
cancelAllNotifications();
}

private void cancelAllNotifications() {
NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.cancelAll();
}

关于java - 如何设置为 0 通知计数 android firebase,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59133737/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com