我在我的 GCMIntentservice 中编写了一个代码,用于向许多用户发送推送通知。我使用 NotificationManager 在单击通知时调用 DescriptionActivity 类。我还将 GCMIntentService 中的 event_id 发送到 DescriptionActivity
protected void onMessage(Context ctx, Intent intent) {
message = intent.getStringExtra("message");
String tempmsg=message;
if(message.contains("You"))
{
String temparray[]=tempmsg.split("=");
event_id=temparray[1];
}
nm= (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
intent = new Intent(this, DescriptionActivity.class);
Log.i("the event id in the service is",event_id+"");
intent.putExtra("event_id", event_id);
intent.putExtra("gcmevent",true);
PendingIntent pi = PendingIntent.getActivity(this,0, intent, 0);
String title="Event Notifier";
Notification n = new Notification(R.drawable.defaultimage,message,System.currentTimeMillis());
n.setLatestEventInfo(this, title, message, pi);
n.defaults= Notification.DEFAULT_ALL;
nm.notify(uniqueID,n);
sendGCMIntent(ctx, message);
}
在这里,我在上述方法中得到的 event_id 是正确的,即我总是得到更新的。但在下面的代码中(DescriptionActivity.java):
intent = getIntent();
final Bundle b = intent.getExtras();
event_id = Integer.parseInt(b.getString("event_id"));
这里的 event_id 始终为“5”。无论我在 GCMIntentService 类中放了什么,我得到的 event_id 总是 5。有人可以指出问题吗?是因为未决意图吗?如果是,那我应该如何处理?