[android-developers] Re: How to make an application icon & its name invisible in emulator/device menu list.

2008-10-06 Thread Ashutosh Tamrakar
Thanks Hackbod, I have used *android:excludeFromRecents="true" *in the manifest* *&* *excluded my activity from currently running apps dialog. Thanks a lot, Ashutosh On 10/3/08, hackbod <[EMAIL PROTECTED]> wrote: > > > Removing all intent filters makes the activity non-exported by > default.

[android-developers] Re: How to make an application icon & its name invisible in emulator/device menu list.

2008-10-03 Thread hackbod
Removing all intent filters makes the activity non-exported by default. You can change this with android:exported="true" in your activity tag. To not have your activity in recents, use android:excludeFromRecents="true". There is lots of valuable information on how you can set up your manifests