アプリを開発し、スプラッシュ ページを追加することにしました。クラスを作成し、アクティビティをマニフェストに追加しました。また、Intent タグを新しい宣言に移動して名前を変更しましたが、logcat で「ランチャーが見つかりません」というエラーが発生します。
私のスプラッシュ Java ファイルは com.rarecreativegroup.dcm1config.splasher と呼ばれ、マニフェストは次のとおりです。
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.rarecreativegroup.dcm1config"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="15" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity android:name=".splasher"
android:label="@string/title_activity_main"
android:screenOrientation="landscape"
>
<intent-filter>
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".MainActivity"
android:label="@string/title_activity_main"
android:screenOrientation="landscape"
>
</activity>
<activity android:name=".mySettings"
android:label="@string/title_activity_main"
android:screenOrientation="landscape"
>
</activity>
</application>
</manifest>