2017-11-13 11 views
1

私は奇妙な問題があります。どのバンドルは、これは私のコードです )(明確にそのメソッドを呼び出した後にクリアすることができません。バンドルがクリアされていません

if(isFromPushNotif) { 
         Bundle pushNotifBundle = getIntent().getExtras() ; 
         Log.i("SplashScreen"," before clear "+pushNotifBundle); 
         intent.putExtras(pushNotifBundle) ; 
         getIntent().getExtras().clear(); 
         Log.i("SplashScreen"," after clear "+getIntent().getExtras()); //Here bundle is not cleared , log displays all the initial elements 

        } 

startActivity(intent); 
overridePendingTransition(0, 0); 
finish(); 
+0

がバンドル 'here'の値を投稿してください –

答えて

0

この

  • 明確なごbundle

    getIntent().removeExtra("your_key_here_to_be_removed"); 
    
0

受け入れ答えについてはこちらをAndroid. Can't clear or replace extras

この問題はonNewIntent使用して代わりにすることで解決されましたアクティビティでonCreteを使用します。

関連する問題