我实现了谷歌通知示例中的代码示例。它在 Android 4.2.2 之前工作正常,但自 4.3 以来就不行了(在我的 Nexus 7 2013 上)......我是唯一一个遇到这个问题的人吗?我是否错过了新的通知方法?这是我的简单代码:
final int NOTIFICATION_ID = 1;
NotificationManager mNotificationManager;
mNotificationManager = (NotificationManager) this.getSystemService(Context.NOTIFICATION_SERVICE);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, new Intent(this, HomeActivity.class), 0);
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.icon)
.setContentTitle("Title")
.setStyle(new NotificationCompat.BigTextStyle()
.bigText(""))
.setContentText("Message");
mBuilder.setContentIntent(contentIntent);
mNotificationManager.notify(NOTIFICATION_ID, mBuilder.build());
谢谢!
好吧,事实上,问题来自我的php文件的错误编码,无论出于何种原因,它都会跳过向数据库添加新用户(registration_id)的请求。GCM 服务器无法知道我的设备,因为它未添加到数据库中...
关键是它适用于 安卓4.3 !