我该如何解析Android中的堆栈通知?
我发送设备的推送消息,例如:
ParsePush androidPush = new ParsePush();
androidPush.setMessage("TEST");
androidPush.sendInBackground();
例如,如果我发送两个通知,则会在电话栏中显示两个图标。我只想要一个图标。
最佳答案
您是否尝试过以下方法?
JSONObject data = new JSONObject("{\"alert\": \"The Mets scored!\",
\"badge\": \"Increment\",
\"sound\": \"cheering.caf\"}");
ParsePush push = new ParsePush();
push.setChannel("Mets");
push.setData(data);
push.sendPushInBackground();
关于代码,您需要为多个通知设置相同的对象。