在解析中堆栈通知

时间:2015-01-06 21:16:11

标签: parse-platform notifications push-notification parse-android-sdk

如何在解析android中进行堆栈通知? 我发送设备的推送消息,例如:

ParsePush androidPush = new ParsePush();
 androidPush.setMessage("TEST");
 androidPush.sendInBackground();

例如,如果我发送两个通知,则在电话栏中显示两个图标。我想只有一个图标。

1 个答案:

答案 0 :(得分:0)

你试试以下方式吗?

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();

使用大约代码,您需要为多个通知设置相同的对象。