This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Overview | |
Standard: A new instance is created every time. | |
SingleTop: Reuses the activity if it's already at the top of the stack. | |
SingleTask: Clears everything above the existing activity instance in the stack. | |
SingleInstancePerTask: Creates a new task for each instance, ensuring independence. | |
Task | |
A task consists of a collection of activities that users engage with while performing specific actions within your app. |