22

我在我的 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。有人可以指出问题吗?是因为未决意图吗?如果是,那我应该如何处理?

4

3 回答 3

43

与您提供的第PendingIntent一个重复使用Intent,这是您的问题。

为避免这种情况,PendingIntent.FLAG_CANCEL_CURRENT请在调用时使用该标志PendingIntent.getActivity()以实际获取新标志:

PendingIntent pi = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_CANCEL_CURRENT);

或者,如果您只想更新附加功能,请使用标志PendingIntent.FLAG_UPDATE_CURRENT

于 2013-05-04T17:37:47.680 回答
12

正如 Joffrey 所说,PendingIntent 与您提供的第一个 Intent 一起重用。您可以尝试使用标志 PendingIntent.FLAG_UPDATE_CURRENT。

PendingIntent pi = PendingIntent.getActivity(this,0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
于 2014-10-30T19:46:58.380 回答
4

也许您仍在使用旧意图。试试这个:

@Override
protected void onNewIntent(Intent intent) {
    super.onNewIntent(intent);
    //try using this intent

    handleIntentExtraFromNotification(intent);
}
于 2015-12-11T15:41:10.750 回答