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.
我有一个使用 TabWidgets 来显示 4 个选项卡的 Android 应用程序。每个选项卡都会打开一个活动。一切正常。现在我打开启动器,我看到的是我的所有选项卡也是应用程序。我有“POI”、“Routes”、“Map”、“E-Bike”作为选项卡,这四个选项卡也在启动器中,超出了真正的应用程序。
这是什么原因造成的?
我猜您在 Manifest 中的每个活动声明中都有以下意图过滤器。仅在需要在 Launcher 上显示的那些活动中使用此功能。
<intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter>