我正在处理从服务器接收消息的应用程序。收到消息时,会显示通知。当收到第二条消息时,它应该堆叠而不是创建一个全新的通知。
我创建了一个接口,该接口有一个接收消息时将运行的方法。
Server
对象是收到消息的地方,构造函数接受我上面提到的接口。
当我初始化服务器对象时,我传递了一个新的侦听器接口实例,其中覆盖的方法会创建通知。思考过程是每次创建新通知时,我将NEW_POST_NOTI
整数增加1并将其添加到组中。
我的代码如下所示:
final int PUSHES_GROUP = 67;
int NEW_POST_NOTI = 56;
...
Server server = new Server((msg) -> {
nm = NotificationManagerCompat.from(ctx);
Notification noti = new NotificationCompat.Builder(ctx)
.setSmallIcon(R.drawable.ic_noti)
.setContentTitle("New Message")
.setContentText(msg)
.setGroup(PUSHES_GROUP)
.build();
nm.notify(NEW_PUSH_NOTI++, noti);
});
每次收到邮件时都会运行相同的代码,但会为每封邮件创建单独的通知,而不是对其进行分组。我还尝试使用setStyle
制作InboxStyle
,但我不确定如何动态添加通知。我的逻辑是否存在问题,或者我只是错误地使用Notification API?
答案 0 :(得分:2)
答案是创建一个InboxStyle
实例变量,并在每次收到新消息时在其上调用addLine
。然后,一旦应用调用onResume
,请重置InboxStyle
。
例如:
public class ServerService extends Service {
...
NotificationCompat.InboxStyle style = new NotificationCompat.InboxStyle();
private static NotificationManagerCompat nm;
private final Context ctx = Server.this;
Server server;
private static int pendingPushes = 0;
private final int NEW_PUSH_NOT = 2;
...
@Override
public int onStartCommand(Intent i, int f, final int s) {
nm = NotificationManagerCompat.from(ctx);
try {
server = new Server((msg) -> {
pendingPushes++;
style.setBigContentTitle(pendingPushes +" new pushes");
style.addLine(msg);
Notification noti = new NotificationCompat.Builder(ctx)
.setSmallIcon(R.drawable.ic_noti)
.setStyle(style)
.setGroupSummary("Click here to view")
.setNumber(pendingPushes) //Should make the number in bottom right the amount of pending messages but not tested yet
.build();
nm.notify(NEW_PUSH_NOT, noti);
});
server.start();
} catch(IOException e) {
e.printStackTrace();
}
return START_STICKY;
}
然后我创建了一个重启待处理计数的方法,并关闭通知。我在MainActivity
onResume()
里面运行它
public static void resetPendingPushes() {
pendingPushes = 0;
style = new NotificationCompat.InboxStyle();
if (nm != null) {
nm.cancel(NEW_PUSH_NOT);
}
}
MainActivity
@Override
protected void onResume() {
super.onResume();
ServerService.resetPendingPushes();
}
感谢所有回答的人,你帮了很多!! 对于有类似问题的人,对不起,如果我的答案中有拼写错误,我会很快从我的单元格中输入。
答案 1 :(得分:1)
我建议您使用Notification ID
中使用的NotificationManager
。此NotificationID基本上代表每个应用程序的唯一ID,因此如果您使用相同的通知ID,那么您将能够收集所有通知。请尝试以下操作并告知我们。
static final int MY_NOTIFICATION_ID = 1;
声明一个像这样的静态通知ID。并通知相同! 而不是
nm.notify(NEW_PUSH_NOTI++, noti);
你写
nm.notify(MY_NOTIFICATION_ID, noti);