Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Include Intent extra when using recreate()

I'm trying to recreate() and activity on Android. I need additional data to be passed via an Intent to the recreated activity. How can this be done?

The following code does not work.

getIntent().putExtra("flag",true);
recreate();
like image 695
blaffie Avatar asked Aug 08 '26 10:08

blaffie


1 Answers

You can call recreate() and save your date into SharedPreferences. In this way you are free to do many things and also the previous activity is completely destroyed before NewActivity begin. Take a look at this deep StackOverflow answer.

like image 87
Soon Santos Avatar answered Aug 10 '26 22:08

Soon Santos