PackageManager pm=getPackageManager();
Intent intent=new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
List<ResolveInfo> list =pm.queryIntentActivities(intent,PackageManager.PERMISSION_GRANTED);
for(ResolveInfo info:list)
{
System.out.println(info.activityInfo.loadLabel(pm).toString());
}