> I think I have do differentiate between home applications / "built-in" > applications like the phone application and application that are not > needed immediately after boot-up. > > So are these different types of applications loaded into RAM at boot- > up or when they are first activated or when the first service is > requested (e.g. an incoming phone call)?
They are loaded into RAM when an Intent triggers them to be loaded into RAM. Examples include clicking on an icon in the Launcher, responding to a system broadcast Intent (e.g., BOOT_COMPLETED), when another application starts one of their activities or remote services, etc. As little as possible is loaded into RAM at system startup. -- Mark Murphy (a Commons Guy) http://commonsware.com Android App Developer Books: http://commonsware.com/books.html --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

