Flag_activity_reorder_to_front And Startactivityforresult
Activity A started B using startActivityForResult, and B started C using startActivity. After that, the activity stack is A B C. Now suppose, C makes startActivity call on B using
Solution 1:
Judging by the documentation for finish():
Call this when your activity is done and should be closed. The ActivityResult is propagated back to whoever launched you via onActivityResult().
This leads me to believe that A will get B's result even if C is in between the two.
Edit - after some testing I discovered some interesting interactions here.
The order of events, after some logging:
- A started
- B started
- C started
- B resumed (with FLAG_ACTIVITY_BRING_TO_FRONT)
- B finished
- C resumed (it was under B)
- C finished
- A resumes and gets B's result
In other words, A gets B's result as expected, but it happens after C finishes and A is resumed.
Post a Comment for "Flag_activity_reorder_to_front And Startactivityforresult"