0

我正在使用GitHub-GCM Cordova 插件。我的问题是收到推送消息后无法显示。

GCMIntentService:

@Override
protected void onMessage(Context context, Intent intent) {
Log.d(TAG, "onMessage - context: " + context);

Bundle extras = intent.getExtras();
if (extras != null) {
//show alert
}
//...
}

我认为我应该是 java 代码,因为我不知道如何引用 html/js.. 但是 AlertDialog Builder 不起作用。

4

1 回答 1

0

您可以使用以下代码在收到推送后显示警报:

String message = extras.getString("message");
String title = extras.getString("title");
Notification notif = new Notification(android.R.drawable.btn_star_big_on, message, System.currentTimeMillis() );
notif.flags = Notification.FLAG_AUTO_CANCEL;
notif.defaults |= Notification.DEFAULT_SOUND;
notif.defaults |= Notification.DEFAULT_VIBRATE;

Intent notificationIntent = new Intent(context, TestSampleApp.class);
notificationIntent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, 0);

notif.setLatestEventInfo(context, title, message, contentIntent);
String ns = Context.NOTIFICATION_SERVICE;
NotificationManager mNotificationManager = (NotificationManager) context.getSystemService(ns);
mNotificationManager.notify(1, notif);

把它放在接收推送的地方。

于 2013-04-02T08:34:55.800 回答