运行第二个活动时出错:必须导出活动或包含intent-filter

时间:2016-11-07 12:07:34

标签: android android-intent

我似乎无法启动我的应用程序。它给我一个这样的错误:"错误运行第二个活动:必须导出活动或包含一个intent-filter"。

我的清单有什么问题吗?

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="sg.edu.rp.g913.mymakeuppouch">


    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

</manifest>

2 个答案:

答案 0 :(得分:23)

android:exported="true"放入<activity>标记

<activity android:name=".secondActivity"
    android:exported="true">

答案 1 :(得分:0)

  1. 进入“运行”菜单,然后选择编辑配置。
  2. 在运行/调试配置窗口中,在左列中选择您的应用(如果尚未选择)。
  3. 在启动选项下:启动,单击侧面箭头,然后选择“指定的活动”选项。
  4. 使用侧面按钮(...)上的或标签输入要启动应用程序的活动的名称,然后从活动中进行选择。