Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的应用中有一些活动,但出于某种原因,菜单上有很多
我的应用程序的图标 - 适用于每项活动。
如何修复它并仅为 MainActivity 制作一个图标?
泰。
在您的清单中,从所有活动中删除这些行,除了您要打开的活动:
<action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" />
(我建议将它们从除 MainActivity 之外的所有活动中删除)。