Search code examples
androidandroid-activitysubactivityactivity-lifecycle

Lifecycle of a subactivity


If an Activity starts another by startActivityForResult(), what happens to that subactivity if the parent is finished?


Solution

  • If Activity A calls startActivityForResult() (starting up Activity B), and A is finished, nothing happens to B, AFAIK.