私は....スプラッシュ画面が任意のアイデア 活動スプラッシュ画面は、Androidマニフェスト
のAndroidManifest.xml
で宣言されていない活動が、それは私が怒っ駆動だと言う私のアプリを実行しようとしたときにエラーを取得維持で宣言されていません! :-)<?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
並べ替えメインビットを削除した後も同じエラーが表示されますが、アプリケーションタグを追加する方法を検討する必要がありますか?どこに追加するか、追加する場所はどこですか? – gareth19822002