我的MainActicity
开头RefreshService
为Intent
,其中有一个boolean
额外的名称isNextWeek
。
我的作品RefreshService
会在用户点击时Notification
启动MainActivity
。
看起来像这样:
Log.d("Refresh", "RefreshService got: isNextWeek: " + String.valueOf(isNextWeek));
Intent notificationIntent = new Intent(this, MainActivity.class);
notificationIntent.putExtra(MainActivity.IS_NEXT_WEEK, isNextWeek);
Log.d("Refresh", "RefreshService put in Intent: isNextWeek: " + String.valueOf(notificationIntent.getBooleanExtra(MainActivity.IS_NEXT_WEEK,false)));
pendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
builder = new NotificationCompat.Builder(this).setContentTitle("Title").setContentText("ContentText").setSmallIcon(R.drawable.ic_notification).setContentIntent(pendingIntent);
notification = builder.build();
// Hide the notification after its selected
notification.flags |= Notification.FLAG_AUTO_CANCEL;
notificationManager.notify(NOTIFICATION_REFRESH, notification);
正如你所看到的notificationIntent
应该有boolean
额外的IS_NEXT_WEEK
与价值isNextWeek
这是摆在PendingIntent
。
现在当我点击这个Notification
我总是得到false
作为价值isNextWeek
这是我在中获取值的方式MainActivity
:
isNextWeek = getIntent().getBooleanExtra(IS_NEXT_WEEK, false);
日志:
08-04 00:19:32.500 13367-13367/de.MayerhoferSimon.Vertretungsplan D/Refresh: MainActivity sent: isNextWeek: true
08-04 00:19:32.510 13367-13573/de.MayerhoferSimon.Vertretungsplan D/Refresh: RefreshService got: isNextWeek: true
08-04 00:19:32.510 13367-13573/de.MayerhoferSimon.Vertretungsplan D/Refresh: RefreshService put in Intent: isNextWeek: true
08-04 00:19:41.990 13367-13367/de.MayerhoferSimon.Vertretungsplan D/Refresh: MainActivity.onCreate got: isNextWeek: false
当我直接启动MainActivity
与Intent
像这样的ìsNextValue`:
Intent i = new Intent(this, MainActivity.class);
i.putExtra(IS_NEXT_WEEK, isNextWeek);
finish();
startActivity(i);
一切正常,我知道true
什么时候isNextWeek
是true
。
总是false
有价值的我错了什么?
更新
这解决了问题:https : //stackoverflow.com/a/18049676/2180161
引用:
我的怀疑是,由于Intent中唯一发生变化的是Extras,因此
PendingIntent.getActivity(...)
工厂方法只是简单地将旧的Intent用作优化。在RefreshService中,尝试:
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, PendingIntent.FLAG_CANCEL_CURRENT);
看到:
http://developer.android.com/reference/android/app/PendingIntent.html#FLAG_CANCEL_CURRENT
更新2
请参阅下面的答案,为什么更好用PendingIntent.FLAG_UPDATE_CURRENT
。