启动器活动不首先启动

时间:2013-03-09 18:27:13

标签: java android

标题解释了它,这里是清单:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="eu.craym.vulcrum.firstgametnb"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="17" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".Splash"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".StartingPoint"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="eu.craym.vulcrum.STARTINGPOINT" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>
</application>

</manifest>

然而,无论何时运行此应用程序,都会首先调用StartingPoint类:

[2013-03-09 18:36:40 - FirstGameTNB] Starting activity eu.craym.vulcrum.firstgametnb.StartingPoint on device emulator-5554

为什么会这样?我认为MAIN和LAUNCHER应该这样做,所以首先调用Splash类,但这种情况从未发生过。请注意,当我删除StartingPoint活动时,它会转到Splash。

1 个答案:

答案 0 :(得分:0)

你是对的。您可以尝试清理项目。

  

android.intent.action.MAIN:作为主入口点开始,没有   期待收到数据。

Source