3

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

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

例如,如果我发送两个通知,那么电话栏中会出现两个图标。我只想有 1 个图标。

4

1 回答 1

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

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

于 2015-07-28T05:36:28.087 回答