How to hide an application icon in Android emulator?

后端 未结 1 1408
悲&欢浪女
悲&欢浪女 2021-02-08 10:18

I have an application which launch automatically after the booting finished,but the application icon is displayed in the android emulator.Now i want to hide that icon from the u

相关标签:
1条回答
  • 2021-02-08 10:48

    "In your AndroidManifest.xml file you probably have a line that says

    <category android:name="android.intent.category.LAUNCHER" />
    

    This line tells ANdroid that it "Should be displayed in the top-level launcher." Remove that line and you should be set.

    0 讨论(0)
提交回复
热议问题