我可以一次发送一个设备通知。 我需要更改PHP代码或java代码? 以下是我的代码:
创建通知以通知用户服务器已发送消息。
private static void generateNotification(Context context, String message) {
int icon = R.drawable.ic_launcher;
long when = System.currentTimeMillis();
NotificationManager notificationManager = (NotificationManager)
context.getSystemService(Context.NOTIFICATION_SERVICE);
Notification notification = new Notification(icon, message, when);
String title = context.getString(R.string.app_name);
Intent notificationIntent = new Intent(context, MainActivity.class);
// set intent so it does not start a new activity
notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP |
Intent.FLAG_ACTIVITY_SINGLE_TOP);
PendingIntent intent =
PendingIntent.getActivity(context, 0, notificationIntent, 0);
notification.setLatestEventInfo(context, title, message, intent);
notification.flags |= Notification.FLAG_AUTO_CANCEL;
// Play default notification sound
notification.defaults |= Notification.DEFAULT_SOUND;
//notification.sound = Uri.parse("android.resource://" + context.getPackageName() + "your_sound_file_name.mp3");
// Vibrate if vibrate is enabled
notification.defaults |= Notification.DEFAULT_VIBRATE;
notificationManager.notify(0, notification);
}
}
答案 0 :(得分:0)
Android应用程序上的Java代码与发送多播消息无关。您必须更改服务器上的PHP代码。
如果您要向多个设备发送相同的消息,则应发送包含以下格式的application/json
内容类型的HTTP请求:
{
"registration_ids" : ["reg-id1","reg-id2",...],
"data" : {
...
},
}
这允许您在单个HTTP请求中向最多1000个设备发送相同的消息。