在 Droid 菜单中重复应用

发布于 2024-11-06 21:13:52 字数 250 浏览 1 评论 0原文

只是想知道是否有人见过这个问题并知道可能出了什么问题。我已经构建了一个库,它在主页上有一个库,您可以在其中选择 A、B、C ... 等,然后它会打开一个页面,其中包含您选择的按钮。现在的问题是,当我将应用程序加载到手机上时,整个应用程序有一个应用程序按钮,然后每个 A、B、C... 等都有一个按钮。类中,我可以单击其中任何一个,它直接从手机菜单打开。就像菜单被垃圾邮件一样,我认为人们不会欣赏这一点。任何人都知道它可能是什么。我之前制作过一个包含库类型的应用程序,但从未出现过此问题。

Just wondering if anyone has seen this problem and knows what might be wrong. I've constructed something of a library it has on the main page where you select A, B, C ... etc. and then it opens a page with buttons for whichever your choice is. Now the problem is when I load my app onto my phone it has one app button for the whole app and then it has one button for each A, B, C... etc .classes as in i can click on any of those and it opens directly from the phones menu. Its like the menu has been spammed and i don't think people would appreciate that. Anyone have any idea what it might be. Ive made an application that has a library type thing in it before and this problem never occurred.

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

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

发布评论

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

评论(1

Spring初心 2024-11-13 21:13:52

从这些其他活动中删除 MAIN 和 LAUNCHER 意图。

http://developer.android.com/guide/topics/intents/intents -filters.html

可以启动的活动
应用程序具有过滤器
指定“android.intent.action.MAIN”
作为动作。如果他们要成为
申请中表示
启动器,他们还指定
“android.intent.category.LAUNCHER”
类别:

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

另外,请注意您的接受率。

Remove the MAIN and LAUNCHER intents from those other activities.

http://developer.android.com/guide/topics/intents/intents-filters.html

Activities that can initiate
applications have filters with
"android.intent.action.MAIN" specified
as the action. If they are to be
represented in the application
launcher, they also specify the
"android.intent.category.LAUNCHER"
category:

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

Also, work on your accept rate.

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