简体   繁体   中英

Why does my Android app show all of the activities?

So, I made an app and now instead of just showing one thumbnail or app, it shows all of my activities! Even though, I uploaded the signed and packaged app, this is happening on other people's phones too! What should I do?

enter link description here

Each activity with a launcher category will be listed in the application launcher:

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM