状态栏上的通知小图标为每个通知创建

问题描述

我正在创建通知

mNotifyBuilder.setContentTitle(envelope.getSubjectWithDefault(context.getString(R.string.no_subject)))
                .setTicker(sybject)
                .setSmallIcon(icon)
                .setContentInfo(name)
                .setDeleteIntent(PendingIntent.getbroadcast(context,(int) id,deleteIntent,PendingIntent.FLAG_CANCEL_CURRENT))
                .setContentIntent(PendingIntent.getActivity(context,notificationIntent,PendingIntent.FLAG_UPDATE_CURRENT))
                .setAutoCancel(true)
                .setNumber(count)
                .setGroup(group)
                .addAction(reply)
                .addAction(cancel,context.getString(R.string.delete),dismiss)
                .setPriority(NotificationCompat.PRIORITY_MAX)
                .setStyle(new NotificationCompat.BigTextStyle()
                        .bigText(text))
                .setContentText(text);
String noti = Context.NOTIFICATION_SERVICE;
        notificationmanager mnotificationmanager = (notificationmanager) context.getSystemService(noti);
        mnotificationmanager.notify((int) id,notify);

但有些手机会在状态栏上为每次推送创建自己的小图标。 我如何找到或更改代码以修复此类通知以使其正常工作?

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)