Google News
logo
Android - Quiz(MCQ)
What is true about FLAG_ACTIVITY_NEW_TASK?
A)
If set in an Intent passed to Context.startActivity()
B)
If set, and the activity being launched is already running in the current task
C)
This flag is generally used by activities that want to present a "launcher" style behavior
D)
All of the above

Correct Answer :   This flag is generally used by activities that want to present a "launcher" style behavior


Explanation : FLAG_ACTIVITY_NEW_TASK: This flag is generally used by activities that want to present a "launcher" style behavior: they give the user a list of separate things that can be done, which otherwise run completely independently of the activity launching them..

Advertisement