Skip to content

Instantly share code, notes, and snippets.

View arunm1407's full-sized avatar

Arunkumar M arunm1407

View GitHub Profile
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.