-1

06-04 12:34:07.871 3697-3697/com.example.halls.basicrecipes E/AndroidRuntime:致命异常:主进程:com.example.halls.basicrecipes,PID:3697 android.content.ActivityNotFoundException:无法找到显式活动类 {com.example.halls.basicrecipes/com.example.halls.basicrecipes.About};您是否在 AndroidManifest.xml 中声明了此活动?在 android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1805) 在 android.app.Instrumentation.execStartActivity(Instrumentation.java:

enter code here

这是我的代码

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

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainMenu">

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

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


</manifest>
4

1 回答 1

0

您项目中的每个Activity都必须在您的Manifest.

activity因此,您必须像这样在文件中声明 About AndroidManifest

<activity
    android:name=".About"
    android:label="@string/app_name" />
于 2017-06-04T16:51:29.913 回答