Home | History | Annotate | Download | only in launcher3

Lines Matching refs:resolveInfo

28 import android.content.pm.ResolveInfo;
2380 List<ResolveInfo> apps = packageManager.queryIntentActivities(mainIntent, 0);
2401 ResolveInfo app = apps.get(i);
2689 // Attempt to use queryIntentActivities to get the ResolveInfo (with IntentFilter info) and
2693 ResolveInfo resolveInfo = null;
2698 List<ResolveInfo> infos = manager.queryIntentActivities(newIntent, 0);
2699 for (ResolveInfo i : infos) {
2703 resolveInfo = i;
2706 if (resolveInfo == null) {
2707 resolveInfo = manager.resolveActivity(intent, 0);
2709 if (resolveInfo != null) {
2710 icon = mIconCache.getIcon(componentName, resolveInfo, labelCache);
2726 if (resolveInfo != null) {
2727 ComponentName key = LauncherModel.getComponentNameFromResolveInfo(resolveInfo);
2731 info.title = resolveInfo.activityInfo.loadLabel(manager);
2944 final List<ResolveInfo> activities = packageManager.queryIntentActivities(supportsIntent,
2946 for (ResolveInfo info : activities) {
3097 static ComponentName getComponentNameFromResolveInfo(ResolveInfo info) {
3104 public static class ShortcutNameComparator implements Comparator<ResolveInfo> {
3118 public final int compare(ResolveInfo a, ResolveInfo b) {
3155 ((ResolveInfo) a).loadLabel(mPackageManager).toString().trim();
3163 ((ResolveInfo) b).loadLabel(mPackageManager).toString().trim();