Is Any Alternate Of Intent.flag_activity_reorder_to_front
I am creating Two activities as below now when click on button from MainActivity it shows SecondActivity and on click button from SecondActivity shows MainActivity normally but now
Solution 1:
use intent.setFlags (Intent.FLAG_ACTIVITY_REORDER_TO_FRONT | Intent.FLAG_ACTIVITY_CLEAR_TOP);
the application will not crash.
Post a Comment for "Is Any Alternate Of Intent.flag_activity_reorder_to_front"