Very similar questions have been asked before... and I have answered them. Have you even attempted to find out for your self by searching stackoverflow and this group? That being said, here are the answers:
*> 1. The list of installed Android applications* PackageManager.getInstalledApplications() http://developer.android.com/reference/android/content/pm/PackageManager.html#getInstalledApplications%28int%29 *> 2. The list of running Android applications* ActivityManager.RunningTaskInfo http://developer.android.com/reference/android/app/ActivityManager.RunningTaskInfo.html *> 3. The list of running Android services* ActivityManager.RunningServiceInfo http://developer.android.com/reference/android/app/ActivityManager.RunningServiceInfo.html Hope this helps, Justin ---------------------------------------------------------------------- There are only 10 types of people in the world... Those who know binary and those who don't. ---------------------------------------------------------------------- On Sat, Apr 3, 2010 at 5:36 AM, alexk-il <[email protected]>wrote: > Hi, > > I couldn't find this in the SDK documentation, so I wonder how to get > programmatically the following information: > > 1. The list of installed Android applications > 2. The list of running Android applications > 3. The list of running Android services > > Thanks > Alex > > -- > You received this message because you are subscribed to the Google > Groups "Android Beginners" group. > > NEW! Try asking and tagging your question on Stack Overflow at > http://stackoverflow.com/questions/tagged/android > > To unsubscribe from this group, send email to > [email protected]<android-beginners%[email protected]> > For more options, visit this group at > http://groups.google.com/group/android-beginners?hl=en > > To unsubscribe, reply using "remove me" as the subject. > -- You received this message because you are subscribed to the Google Groups "Android Beginners" group. NEW! Try asking and tagging your question on Stack Overflow at http://stackoverflow.com/questions/tagged/android To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en

