安卓:获取通知的唯一ID

2022-09-03 03:53:30

我有一个看起来像这样的块:for

for(int counter = 0; counter < sList.size(); counter++){
            String s = sList.get(counter);
            Notification notification = new NotificationCompat.Builder(this).setContentTitle("Title").setContentText(s).setSmallIcon(R.drawable.ic_launcher).setContentIntent(pendingIntent).build();
            notification.flags |= Notification.FLAG_AUTO_CANCEL;
            notificationManager.notify(counter, notification);
}

此块位于由警报管理器触发的服务中。因此,在用户看到通知之前,此块实际上可能会执行几次。当将某些内容添加到 sList 时重新执行此块时,它将覆盖当前通知,因为通知的 ID 是相同的。我怎样才能防止这种情况发生?如何每次都获得唯一 ID?或者是否有可能避免整个ID部分,例如告诉Android,无论ID是什么,无论如何都必须显示通知?

提前致谢!


答案 1
long time = new Date().getTime();
String tmpStr = String.valueOf(time);
String last4Str = tmpStr.substring(tmpStr.length() - 5);
int notificationId = Integer.valueOf(last4Str);

notificationManager.notify(notificationId, notif);

它获取当前系统时间。然后我只从中读取最后4位数字。每次显示通知时,我都使用它来创建唯一的ID。因此,将避免获得相同或重置通知ID的可能性。


答案 2

我相信你不应该一次为用户提供这么多通知。您应该显示一条通知,其中包含有关事件组的信息,例如Gmail客户端。用于此目的。Notification.Builder

NotificationCompat.Builder b = new NotificationCompat.Builder(c);
       b.setNumber(g_push.Counter)
        .setLargeIcon(BitmapFactory.decodeResource(c.getResources(), R.drawable.list_avatar))
        .setSmallIcon(R.drawable.ic_stat_example)
        .setAutoCancel(true)
        .setContentTitle(pushCount > 1 ? c.getString(R.string.stat_messages_title) + pushCount : title)
        .setContentText(pushCount > 1 ? push.ProfileID : mess)
        .setWhen(g_push.Timestamp)
        .setContentIntent(PendingIntent.getActivity(c, 0, it, PendingIntent.FLAG_UPDATE_CURRENT))
        .setDeleteIntent(PendingIntent.getBroadcast(c, 0, new Intent(ACTION_CLEAR_NOTIFICATION), PendingIntent.FLAG_CANCEL_CURRENT))
        .setDefaults(Notification.DEFAULT_LIGHTS | Notification.DEFAULT_VIBRATE)
        .setSound(Uri.parse(prefs.getString(
                SharedPreferencesID.PREFERENCE_ID_PUSH_SOUND_URI,
                "android.resource://ru.mail.mailapp/raw/new_message_bells")));

如果仍然需要很多状态栏通知,则应将计数器的最后一个值保存在某个位置,并使用 for 循环,如下所示:

    int counter = loadLastCounterValue();
    for(String s : sList){
            Notification notification = new NotificationCompat.Builder(this).setContentTitle("Title").setContentText(s).setSmallIcon(R.drawable.ic_launcher).setContentIntent(pendingIntent).build();
            notification.flags |= Notification.FLAG_AUTO_CANCEL;
            notificationManager.notify(++counter, notification);
    }
    saveCounter(counter);

但正如我所说,我认为这是糟糕的解决方案,导致您的应用程序用户体验不佳。