[android-developers] Re: hide application

2009-08-13 Thread Marco Nelissen
On Wed, Aug 12, 2009 at 11:29 PM, Honest wrote: > > I want to start my application  when phone start and after that i do > not want that user can know that my application is running. Is there > any way i can do it ? In phone when we press home screen for some > times it display all running applica

[android-developers] Re: hide application

2009-08-13 Thread String
On Aug 13, 8:23 am, Honest wrote: > Can you tell me how i can create background service ? No, I can't. It's a big topic. I use "background service" as a generic term for a process which is accomplishing something without direct user intervention. Specifically what you need to do will depend on

[android-developers] Re: hide application

2009-08-13 Thread Honest
Thanks for your reply. Can you tell me how i can create background service ? On Aug 13, 12:06 pm, String wrote: > On Aug 13, 7:29 am, Honest wrote: > > > I want to start my application  when phone start and after that i do > > not want that user can know that my application is running. Is ther

[android-developers] Re: hide application

2009-08-13 Thread String
On Aug 13, 7:29 am, Honest wrote: > I want to start my application  when phone start and after that i do > not want that user can know that my application is running. Is there > any way i can do it ? In phone when we press home screen for some > times it display all running application. I do not

[android-developers] Re: Hide application in Home dinamically

2009-06-10 Thread Jeff Sharkey
> You can try PackageManager#setComponentEnabledSetting(), though I have > not tried this personally. Yep this should work perfectly. In fact, it's how the Email app hides/shows itself in "Share" lists across the system dynamically, based on if you have an account setup. -- Jeff Sharkey jshar

[android-developers] Re: Hide application in Home dinamically

2009-06-10 Thread Mark Murphy
rollbak wrote: > Hello, > > I want to know if there is a way or workaround to hide an application > to be shown in the Home activity, but doing this dynamically from my > own app code. You can try PackageManager#setComponentEnabledSetting(), though I have not tried this personally. -- Mark Mur