[android-developers] How to Launch Home Screen Programmatically in Android

2011-01-21 Thread sjor
Hi. I want to launch home screen of Android with my application. The main target is to show all of apps to user when he/she presses a specialized key. Actually, the way is not important. Any idea to do this? -- You received this message because you are subscribed to the Google Groups "Android Dev

Re: [android-developers] How to Launch Home Screen Programmatically in Android

2011-01-21 Thread TreKing
On Fri, Jan 21, 2011 at 2:50 AM, sjor wrote: > Any idea to do this? > Tell the user "Press your Home Key". Or figure out an intent to launch using this: http://developer.android.com/reference/android/content/Intent.html#CATEGORY_HOME

Re: [android-developers] How to Launch Home Screen Programmatically in Android

2011-01-21 Thread Dianne Hackborn
Action: ACTION_MAIN Category: CATEGORY_HOME Flags: FLAG_ACTIVITY_NEW_TASK On Fri, Jan 21, 2011 at 5:27 AM, TreKing wrote: > On Fri, Jan 21, 2011 at 2:50 AM, sjor wrote: > >> Any idea to do this? >> > > Tell the user "Press your Home Key". > > Or figure out an intent to launch using this: > http