-1

When does the current Activity finish? When we start a new Activity using the startActivity() method followed by the finish() method on the current Activity?

Does it finish as soon as the new Activity starts or when the new Activity is finished?

Knossos
  • 15,802
  • 10
  • 54
  • 91
pranavps
  • 13
  • 1

1 Answers1

0

This is your typical Activity life cycle.

Follow the diagram, and pay attention to the "New Activity is started" flow.

enter image description here

Knossos
  • 15,802
  • 10
  • 54
  • 91