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.
4 つのタブを表示するために TabWidgets を使用する Android アプリがあります。各タブはアクティビティを開きます。すべて正常に動作しています。ランチャーを開くと、表示されるタブはすべてアプリでもあります。タブとして「POI」、「ルート」、「地図」、「E-Bike」があり、4 つすべてが実際のアプリ以外のランチャーにもあります。
これは何が原因ですか?
マニフェストの各アクティビティ宣言には、以下のインテント フィルターがあると思います。これは、ランチャーに表示する必要があるアクティビティにのみ使用してください。
<intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter>