我在 SO 上遇到了许多类似的问题,但没有一个提供对我有帮助的解决方案。值得一提的是,它在调试过程中突然发生,就在我设法启动这个活动之后(在同一个调试会话中)。我没有改变任何重要的东西,所以我完全不知道我是怎么遇到这个问题的。
尝试开始新活动时出现错误:
Intent intent = new Intent(SplashActivity.this, MainActivity.class);
startActivity(intent);
错误信息:
android.content.ActivityNotFoundException:找不到明确的活动类 {com.xxx/com.xxx.MainActivity};您是否在 AndroidManifest.xml 中声明了此活动?
这两个活动都在同一个包中声明com.xxx
。清单(删除不相关的代码):
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.xxx">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<application
android:name="misc.App"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme"
tools:replace="android:icon">
<activity
android:name=".SplashActivity"
android:theme="@android:style/Theme.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".MainActivity"
android:label=""
android:theme="@style/Theme.AppCompat.NoActionBar" />
</application>
</manifest>
我尝试了将显式路径放在清单中和创建时的Intent
方法,但它没有帮助,以及清理项目。
任何的想法?谢谢!
编辑:这是项目结构的活动部分: