这是我的AndroidManifiest.xml文件 他们是2错误 找不到属性' launchmode'在包android 找不到属性' stateNotNeeded'的资源标识符在包android中
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="a52.puri.fbkunal.com.launcher">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@android:style/Theme.Wallpaper.NoTitleBar.Fullscreen"
android:launchMode="singleTask"
android:stateNotNeeded="true"
android:
>
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.HOME" />
</intent-filter>
</activity>
</application>
</manifest>
答案 0 :(得分:1)
将launchMode
分配到不在应用程序代码中的活动中。
基本上我们可以在AndroidManifest.xml文件列表中直接指定launchMode
作为<activity>
标记的属性:
<activity
android:name=".SingleTaskActivity"
android:label="singleTask launchMode"
android:launchMode="singleTask">
答案 1 :(得分:1)
您为application
标记分配了未知属性,android中的launchMode
用于活动。活动启动并对用户可见,但应用程序仅在您启动应用程序时启动一次。你可以说应用程序是Android App中的一个起点。