我的AndroidManifest.xml有一个活动。
<activity
android:name="com.example.foo.myfirstapp.MainActivity"
android:label="@string/app_name"
android:launchMode="standard"
android:documentLaunchMode="-----------"
>
我尝试将此活动的documentLaunchMode
(在Lollipop中添加)设置为四个可能值中的每一个:"none"
(值0),"intoExisting"
(值1),{{1 }(值2)和"always"
(值3)。无论我在AndroidManifest.xml中给出documentLaunchMode的值如何,在运行时它总是为0。
(值来自http://developer.android.com/reference/android/R.attr.html#documentLaunchMode。)
我使用以下代码来获取documentLaunchMode的值。
"never"
我是否尝试错误地设置documentLaunchMode?或者,我是否试图在运行时错误地看到这些值?