android studio 1.2.2版中找不到默认活动

时间:2015-07-05 06:40:58

标签: android

我是Android应用程序开发的新手,我正在关注新波士顿的视频教程。我的应用程序在模拟器“应用程序意外关闭”时出错,但当我尝试再次运行时,它给出了错误:未找到默认活动

在谷歌和堆栈溢出上花了几个小时后,我发现它与android清单有关。

所以这是我的清单文件。

 <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.shubhangkhattar.newboston" >

    <application
        android:allowBackup="true"
        android:icon="@mipmap/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="com.example.shubhangkhattar.newboston.SPLASH" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="com.example.shubhangkhattar.newboston.MAIN" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity
            android:name=".Menu"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="com.example.shubhangkhattar.newboston.MENU" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
    </application>

</manifest>

我已经尝试过无效捕获/重启并使用gradle文件同步项目。

1 个答案:

答案 0 :(得分:0)

更改

    <action android:name="com.example.shubhangkhattar.newboston.SPLASH"/>

    <action android:name="android.intent.action.MAIN"/>

Intents reference