我的问题是如何配置通知,即有标题和消息,因为它只给我消息但没有标题。在文件“GCMIntentService.java”插件中,我找到了三个变量,title、message 和 msgcnt,可以告诉我每个变量是如何使用的以及它的作用吗?
这里收到的数据不好,使用默认值
NotificationCompat.Builder mBuilder =
new NotificationCompat.Builder(context)
.setDefaults(Notification.DEFAULT_ALL)
.setSmallIcon(context.getApplicationInfo().icon)
.setWhen(System.currentTimeMillis())
.setContentTitle(extras.getString("title"))
.setTicker(extras.getString("title"))
.setContentIntent(contentIntent);
String message = extras.getString("message");
if (message != null) {
mBuilder.setContentText(message);
} else {
mBuilder.setContentText("<missing message content>");
}