139

我从aMainActicity 开始,其中有一个额外的.RefreshServiceIntentbooleanisNextWeek

当用户点击它时,MyRefreshServiceNotification启动 my 。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

当我直接使用 ìsNextValue` 开始时MainActivityIntent如下所示:

    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 中唯一改变的是额外内容,因此PendingIntent.getActivity(...)工厂方法只是重新使用旧意图作为优化。

在 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.

4

3 回答 3

40

由于内存使用效率低下,使用 PendingIntent.FLAG_CANCEL_CURRENT 不是一个好的解决方案。而是使用PendingIntent.FLAG_UPDATE_CURRENT

也使用Intent.FLAG_ACTIVITY_SINGLE_TOP(如果 Activity 已经在历史堆栈的顶部运行,则不会启动它)。

Intent resultIntent = new Intent(this, FragmentPagerSupportActivity.class).
                    addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);  
resultIntent.putExtra(FragmentPagerSupportActivity.PAGE_NUMBER_KEY, pageNumber);

PendingIntent resultPendingIntent =
                PendingIntent.getActivity(
                        this,
                        0,
                        resultIntent,
                        PendingIntent.FLAG_UPDATE_CURRENT
                );

然后:

@Override
    protected void onCreate(Bundle savedInstanceState) {
        try {
            super.onCreate(savedInstanceState);

            int startPageNumber;
            if ( savedInstanceState != null)
            {
                startPageNumber = savedInstanceState.getInt(PAGE_NUMBER_KEY);
//so on

它现在应该可以工作了。


如果您仍然没有预期的行为,请尝试实现 void onNewIntent(Intent intent)事件处理程序,这样您就可以访问为活动调用的新意图(这与仅调用 getIntent() 不同,这将始终返回启动的第一个 Intent你的活动。

@Override
protected void onNewIntent(Intent intent) {
    int startPageNumber;

    if (intent != null) {
        startPageNumber = intent.getExtras().getInt(PAGE_NUMBER_KEY);
    } else {
        startPageNumber = 0;
    }
}
于 2016-06-08T07:24:30.427 回答
21

我认为您需要通过覆盖您的 Activity来更新Intent收到新邮件的时间。onNewIntent(Intent)将以下内容添加到您的活动中:

@Override
public void onNewIntent(Intent newIntent) {
    this.setIntent(newIntent);

    // Now getIntent() returns the updated Intent
    isNextWeek = getIntent().getBooleanExtra(IS_NEXT_WEEK, false);        
}

编辑:

仅当收到意图时您的 Activity 已经启动时才需要这样做。如果您的活动是由意图开始(而不仅仅是恢复),那么问题出在其他地方,我的建议可能无法解决。

于 2013-08-03T23:31:23.270 回答
3

以下代码应该可以工作: -

int icon = R.drawable.icon;
String message = "hello";
long when = System.currentTimeMillis();
NotificationManager notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
Notification notification = new Notification(icon, message, when);

Intent notificationIntent = new Intent(context, MainActivity.class);
notificationIntent.putExtra("isNexWeek", true);
notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
PendingIntent pIntent = PendingIntent.getActivity(context, 0, notificationIntent, 0);
notification.setLatestEventInfo(context, title, message, pIntent);
notification.flags |= Notification.FLAG_AUTO_CANCEL;
notificationManager.notify(0, notification);

在 MainActivity onCreate:

if (getIntent().getExtras() != null && getIntent().getExtras().containsKey("isNextWeek")) {
        boolean isNextWeek = getIntent().getExtras().getBoolean("isNextWeek");
}
于 2013-08-03T23:05:04.797 回答