NotificationManager设置的Intent不会反映在activity的onResume()中

时间:2010-12-03 23:42:24

标签: android android-activity notifications android-intent android-pendingintent

我有一个广播接收器,在收到某些东西后,会创建一个待定的意图,用一些数据打包它,然后用它来用NotificationManager创建一个通知。当NotificationManager恢复活动时,挂起意图中指定的活动始终读出原始挂起意图的数据 - 当广播接收器中的后续onReceive()设置时,它永远不会读出任何新数据。这是广播接收器的片段:

public void onReceive( Context context, Intent intent ) {
    String action = intent.getAction();

    if( action.equals( "someaction" ) ) {
        long now = System.currentTimeMillis();
        int icon = R.drawable.icon;
        CharSequence tickerText = context.getString( R.string.tickerText );
        CharSequence contentTitle = context.getString( R.string.contentTitle );
        CharSequence contentText = context.getString( R.string.contentText );
        Intent notificationIntent = new Intent( context, MyActivity.class );

        Log.d( TAG, "Creating notification with data = " + intent.getStringExtra( "somestring" ) );
        notificationIntent.putExtra( "somestring", intent.getStringExtra( "somestring" ) );
        notificationIntent.addFlags( Intent.FLAG_ACTIVITY_SINGLE_TOP );
        notificationIntent.addFlags( Intent.FLAG_ACTIVITY_NEW_TASK );

        PendingIntent contentIntent = PendingIntent.getActivity( context, 0, notificationIntent, 0 );
        Notification notification = new Notification( icon, tickerText, now );
        NotificationManager notificationmgr = (NotificationManager)context.getSystemService( Context.NOTIFICATION_SERVICE );

        notification.flags |= Notification.FLAG_AUTO_CANCEL |
                              Notification.DEFAULT_SOUND |
                              Notification.DEFAULT_VIBRATE;
        notification.setLatestEventInfo( context, contentTitle, contentText, contentIntent );
        notificationmgr.cancelAll();
        notificationmgr.notify( 0, notification );
    }
}

这是活动的内容:

protected void onStart() {
    super.onStart();

    Intent intent = getIntent();
    String somestring = intent.getStringExtra( "somestring" );

    Log.d( TAG, "onStart(), somestring = " + somestring );
}

protected void onResume() {
    super.onResume();

    Intent intent = getIntent();
    String somestring = intent.getStringExtra( "somestring" );

    Log.d( TAG, "onResume(), somestring = " + somestring );
}

protected void onNewIntent( Intent intent ) {
    Log.d( TAG, "onNewIntent(), intent = " + intent );
    super.onNewIntent( intent );
    setIntent( intent );
}

所以这是场景: 在主屏幕上,我的接收器会收到一些意图,例如 somestring 设置为“hello world”。通知栏显示通知,我向下滑动通知栏,然后点击通知以启动(创建或恢复)活动。活动正确地读出“你好世界”。我将活动保留在前台或使用主页键将其保留为背景。第二次我的广播接收器接收,比如“再次问候”为 somestring 。它再次创建通知,这次是“再次问候”,除非通过通知恢复活动,我在调试中看到既不 getIntent()也不onNewIntent()反映更新的值< em> somestring (即“再次问候”)。也就是说,它仍然保持着“你好世界”的旧价值。

有什么想法吗?我似乎找不到强制更新意图数据的方法。任何帮助表示赞赏;提前谢谢。

2 个答案:

答案 0 :(得分:7)

修正了它。创建挂起的intent时,应该传递PendingIntent.FLAG_UPDATE_CURRENT:     PendingIntent contentIntent = PendingIntent.getActivity(context,0,notificationIntent,PendingIntent.FLAG_UPDATE_CURRENT);

答案 1 :(得分:0)

今天我挣扎了几个小时,如果你不需要它,你也可以将标志设置为0!我真的不需要它,所以帮助了我:)!希望它可以帮助别人!