Android default launchMode of LAUNCHER activity?

后端 未结 5 994
礼貌的吻别
礼貌的吻别 2021-02-18 23:07

does the launchMode of the launcher activity in the manifest get ignored? The android documentation says that the default

5条回答
  •  时光取名叫无心
    2021-02-18 23:38

    Think of everything except the opening activity as an abstract implementation. Declaring an activity as

            
                
    
                
            
    

    Will cause it to open first. Subsequent activities are Overriden at the time an Intent is formed to navigate between activities. The overrides are represented as intent flags.

    A list of intent extras: http://developer.android.com/reference/android/content/Intent.html

    With flags being commands you'd otherwise have written in the Manifest.

提交回复
热议问题