does the launchMode
of the launcher activity
in the manifest
get ignored?
The android
documentation says that the default
You are right.The default mode is "standard".
According to android documentation
*In
standard
mode ,Every time there's a new intent for a "standard" activity, a new instance of the class is created to respond to that intent. Each instance handles a single intent.*.If the parent activity has launch mode
standard
(and the up intent does not containFLAG_ACTIVITY_CLEAR_TOP
), the current activity and its parent are both popped off the stack, and a new instance of the parent activity is created to receive the navigation intent.