2

我编写了两个不同的应用程序,我们称它们为 AppA 和 AppB。我正在尝试使用意图从 AppB 启动 AppA 中的活动。我正在尝试以明确的意图来完成此任务。

在 AppB 中,我创建了这样的意图:

 ComponentName cn = new ComponentName("com.example.user.appa",
            "appaActivity");
    Intent infoIntent = new Intent();
    infoIntent.setComponent(cn);
    infoIntent.setAction("com.example.DO_SOMETHING");
    infoIntent.putStringArrayListExtra("arrList", incInfo);
    startActivity(infoIntent);

在 AppA 的 AndroidManifest.xml 中,我包含以下内容:

<activity
     android:name=".appaActivity"
     android:label="@string/title_activity">
     <intent-filter>
         <action android:name="com.example.DO_SOMETHING"/>
     </intent-filter>
</activity>

当我尝试运行 AppB(将 Intent 发送到 AppA 时,我收到以下错误:

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.user.appb/com.example.user.appb.MainActivity}: android.content.ActivityNotFoundException: Unable to find explicit activity class {com.example.user.appa/appaActivity}; have you declared this activity in your AndroidManifest.xml?

因为我可以清楚地看到我在 AppA AndroidManifest.xml 中定义了 appaActivity,所以谁能告诉我我可能忽略了什么?

4

1 回答 1

4

在 AppB 的 ComponentName 对象中,我没有提供类名的完整路径,因为我没有意识到这是必要的。一旦我添加了它,它就像一个魅力。

更正的组件名称:

ComponentName cn = new ComponentName("com.example.user.appa",
    "com.example.user.appa.appaActivity");
于 2015-02-06T19:26:02.710 回答