Android Studio无法找到活动

时间:2014-12-11 12:44:22

标签: android intellij-idea

我正在使用Android Studio 1.0突然,突然之间,我无法在手机上运行我的应用程序,因为它告诉我它无法找到默认活动。

更改&#34;默认活动&#34;对于我想要启动的特定活动,以错误结束,显然我选择的活动未在AndroidManifest.xml中声明。 这也不是真的,因为我确实在.xml中声明了它,我没有删除它或添加新的东西,它总是在那里,现在它不想工作。< / p>

感谢您阅读,也许回答/评论。 :d

编辑:这是我的AndroidManifest.xml:

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

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            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=".SecondPageActivity">

        </activity>
    </application>

</manifest>

1 个答案:

答案 0 :(得分:2)

您可能需要刷新IDE的缓存。

File -> Invalidate Caches / Restart...