List of Applications

Quickly share your Android Code Snippets here...

List of Applications

Postby baca » Sun Dec 04, 2011 8:10 pm

Code: Select all
PackageManager pm = getPackageManager();               
List<ApplicationInfo> list = pm.getInstalledApplications(0);
               
for (int i=0; i< list.size(); i++)
{
    ApplicationInfo appInfo = list.get(i);
    String packageName = appInfo.packageName;
    String appLabel = (String) pm.getApplicationLabel(appInfo);
    Drawable icon = pm.getApplicationIcon(appInfo);
}
User avatar
baca
Freshman
Freshman
 
Posts: 6
Joined: Fri Oct 21, 2011 11:06 pm
Location: Poland

Top

Return to Code Snippets for Android

Who is online

Users browsing this forum: KerryDicostanzo and 12 guests