I think "home" is not the first application that is started, but it is the first visible one. So you have two options:
1. Your application can replace the home screen, but then it should do everything that a home screen does. You have to declare an IntentFilter with the Home category, see http://developer.android.com/reference/android/content/Intent.html#CATEGORY_HOME 2. You can register your app to be executed on startup, additional to "home". There is a matching "broadcast action" decribed here: http://developer.android.com/reference/android/content/Intent.html#ACTION_BOOT_COMPLETED On 6 Aug., 08:43, tstanly <[email protected]> wrote: > hi all, > > I want to change the start point of my machine, > that is,when start on Android, > it can run my app instead of "home" firstly, > > if it possiable? > > thanks! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

