Here you can find the source of getInstalleApps(Context mContext)
public static List<ResolveInfo> getInstalleApps(Context mContext)
//package com.java2s; import java.util.List; import android.content.Context; import android.content.Intent; import android.content.pm.ResolveInfo; public class Main { public static List<ResolveInfo> getInstalleApps(Context mContext) { Intent mainIntent = new Intent(Intent.ACTION_MAIN, null); mainIntent.addCategory(Intent.CATEGORY_LAUNCHER); return mContext.getPackageManager().queryIntentActivities( mainIntent, 0);//from w w w . ja v a 2 s . c o m } }