为什么我的 Android 应用程序在设备上创建了太多项目
我自己开发的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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我了解,您的问题是安装时设备中出现 7 个同名应用程序。
如果是这样,那么检查清单文件中的活动标记,它应该只包含一个操作。MAIN(下面提到),如果您添加了所有活动,则上述情况可能会发生。要解决此问题,请将此标签删除到除主要活动之外的所有活动。
希望有帮助。
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.
Hope it helps.