1

GCMBaseIntentService在我的服务类中使用它扩展GCMBaseIntentService了我覆盖的方法onMessage(Context,Intent)。代码在这里:

protected void onMessage(Context context, Intent intent) {
    Log.i(TAG, "Received message");

    //String message = getString(R.string.gcm_message);
    String id=intent.getExtras().getString("event_id");
    String message=intent.getExtras().getString("title");
    String eventname=intent.getExtras().getString("event_name");

    generateNotification(getApplicationContext(), id, message, eventname);  
}

private static void generateNotification(Context context, String id, String message, String eventname) 
{
    int icon = R.drawable.ic_stat_gcm;
    long when = System.currentTimeMillis();
    NotificationManager notificationManager = (NotificationManager)context.getSystemService(Context.NOTIFICATION_SERVICE);
    Notification notification = new Notification(icon, message, when);

   //new intent
    Intent notificationIntent = new Intent(context, EventDescription.class);
    notificationIntent.putExtra("event_id", id);//need this id in the eventdescription activity

    notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);

    PendingIntent intent = PendingIntent.getActivity(context, 0, notificationIntent, 0);
    notification.setLatestEventInfo(context, eventname, message, intent);
    notification.flags |= Notification.FLAG_AUTO_CANCEL;

    notificationManager.notify(0, notification); 
}

问题是,当我单击此通知并在Eventdescription活动中并从意图中提取额外内容并打印 ID 时。它仅在第一次显示正确的值,之后对于每个通知,它始终显示第一个值。请帮忙!

4

4 回答 4

0
   protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.notificationsfinal);


    start=1;
    end=15;

    next=(Button)findViewById(R.id.nextbtn);
    prev=(Button)findViewById(R.id.prevbtn);
    statusview=(TextView)findViewById(R.id.status);


    notification_list_view=(ListView)findViewById(R.id.not_listview);
    updatestatus();
    getNotifications();

}
private void getNotifications()
{
    eventnotifierapp app=(eventnotifierapp)getApplication();



    id=getIntent().getExtras().getString("event_id");
    db=new MyDB(this);
    }

这是我正在检索此 event_id 的 EventDescription 活动

于 2012-12-09T11:22:24.713 回答
0

您后续Intent的 s 不够不同,因此它们正在被回收。具体来说,extras从系统的角度来看,更改并不会产生明显的意图。

Intent.filterEquals的文档说明您需要更改以下一项或多项:操作、数据、类型、类和类别。因此,一种方法是将一些区别信息(在您的情况下为event_id)粘贴到数据 URI 中;您不必将此 URI 用于任何事情,但它可以确保您的意图是不同的。

此相关问题中有更多信息。

于 2012-12-10T18:40:10.543 回答
0

尝试这个

PendingIntent intent = PendingIntent.getActivity(context, **uniqueKey**, notificationIntent, 0);

请注意 Pending Intent 的 getActivity 的 requestCode 应该是唯一的。所以只需通过

每个通知的唯一值。您可以放置​​时间戳甚至是您收到的 id

从服务器。我已经尝试过了,这很有效。请分享您的反馈

于 2012-12-08T19:05:16.707 回答
0
notificationIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
于 2012-12-08T19:07:49.443 回答