为什么我的 Android 应用程序在设备上创建了太多项目

发布于 2024-12-13 09:00:02 字数 105 浏览 3 评论 0原文

我自己开发的Android应用程序在设备上创建了7个同名的项目,但在“设置”->“应用->管理应用程序只有一项。我的应用程序的所有类都有相同的包。谁能为我解释一下为什么? 非常感谢你。

My self-developed android app create 7 items on Device with the same name, but in Settings -> Applications -> Manage Applications there is only one item. All classes of my app have the same package. Can anyone explain for me why?
Thanks you so much.

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

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

发布评论

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

评论(1

一笑百媚生 2024-12-20 09:00:02

据我了解,您的问题是安装时设备中出现 7 个同名应用程序。

如果是这样,那么检查清单文件中的活动标记,它应该只包含一个操作。MAIN(下面提到),如果您添加了所有活动,则上述情况可能会发生。要解决此问题,请将此标签删除到除主要活动之外的所有活动。

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

希望有帮助。

I understand that your problem is your getting 7 app with same names in the device when your installing it.

If this is so, then check the activtity tag in manifest file,it should contain only one action.MAIN ( mentioned below) , if you added this all activities the above scenario can happen. To resolve , remove this tag to all activities except main activity.

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

Hope it helps.

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