我不斷收到錯誤嘗試運行我的應用程序是說,當....閃屏沒有在AndroidManifest.xml活動閃屏沒有在Android清單
任何想法聲明的活動,因爲它是快把我逼瘋了聲明! :-)
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.sjmplanningfinal">
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@android:style/Theme.Holo.Light">
<activity android:name="com.example.sjmplanningfinal.SplashScreen">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.example.sjmplanningfinal.SJMPlanningHome" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
它解決了嗎?如果沒有,我會發布我的答案的問題。 – UmarZaii
類別。刪除Main位後,我仍然收到相同的錯誤,但現在我需要解決如何添加應用程序標記?或者在哪裏添加它或添加什麼? – gareth19822002