How To Hide An Application Icon In Android Emulator?
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 user
Solution 1:
"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.
Post a Comment for "How To Hide An Application Icon In Android Emulator?"