错误 运行 'splash':必须导出 activity 或包含 intent-filter

Error running 'splash': The activity must be exported or contain an intent-filter

我在 MainActivity 之后为我的项目添加了启动画面。我想应该是先开始。我怎样才能将它设置为第一?这是我的 manifest.xml.

`

<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=".splash"></activity>
    <activity android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

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

您应该将 intent-filterMainActivity 切换到 splash

您将在下面找到解决方案:

<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=".splash">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

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

    <activity android:name=".MainActivity"/>
</application>

不要忘记在 splash 中扩展 AppCompatActivity

此外,我建议将 splash 重命名为 SplashActivity