Android 使用对话框消除完整操作

发布于 2024-09-06 13:14:08 字数 439 浏览 6 评论 0原文

我有 2 个应用程序,并且都集成了一个包含活动的包。我的问题是,当我启动任何一个应用程序,并且当它调用包内的活动时,它会向我显示一个对话框:

使用以下方式完成操作:

应用1

应用2

我想消除此对话框,因此它只是从自己的集成包启动该活动。

目前,我的 AndroidManifest.xml 包含包活动:

<intent-filter>
    <action android:name="com.example.test.TestActivity" />
    <category android:name="android.intent.category.DEFAULT" />
</intent-filter>

I have 2 apps and both integrate a package containing an activity. My problem is that when I launch any one app, and when it calls the activity inside the package, it shows me a dialog:

Complete action using:

App1

App2

I want to eliminate this dialog, so it just launches the activity from its own integrated package.

Currently, my AndroidManifest.xml contains for the package activity:

<intent-filter>
    <action android:name="com.example.test.TestActivity" />
    <category android:name="android.intent.category.DEFAULT" />
</intent-filter>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

故事和酒 2024-09-13 13:14:08

您需要更改该活动的这两个副本之一的 。目前,两者都在宣传它们支持相同的操作字符串。更改一个以使用不同的操作字符串。或者,不要在 Intent 中使用操作字符串 - 如果 Java 代码是应用程序的一部分,请使用 new Intent(this, TestActivity.class)

You will need to change the <intent-filter> for one of those two copies of the activity. Right now, both are advertising that they support the same action string. Change one to use a different action string. Or, don't use the action string in the Intent -- use new Intent(this, TestActivity.class) if the Java code is part of your application.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文