cody
cody

Reputation: 6941

Lifecycle of a subactivity

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

Upvotes: 1

Views: 255

Answers (1)

CommonsWare
CommonsWare

Reputation: 1007099

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

Upvotes: 1

Related Questions