[JAVA] [Android] Difference between finish (); and return;
- Finish (); in the very first Activity
→ The app crashes
- After transitioning from Main.Activity to Sub.Activity, finish (); with Sub.Activity
→ Sub.Actvity disappears and Main.Activity is displayed
- return;
→ The process is finished, but the screen does not disappear.