HomeSort by relevance Sort by last modified time
    Searched refs:mainIntent (Results 1 - 16 of 16) sorted by null

  /development/samples/ApiDemos/src/com/example/android/apis/view/
Grid1.java 54 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
55 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
57 mApps = getPackageManager().queryIntentActivities(mainIntent, 0);
LayoutAnimation1.java 48 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
49 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
51 mApps = getPackageManager().queryIntentActivities(mainIntent, 0);
LayoutAnimation4.java 49 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
50 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
52 mApps = getPackageManager().queryIntentActivities(mainIntent, 0);
LayoutAnimation5.java 48 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
49 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
51 mApps = getPackageManager().queryIntentActivities(mainIntent, 0);
LayoutAnimation6.java 48 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
49 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
51 mApps = getPackageManager().queryIntentActivities(mainIntent, 0);
Grid3.java 61 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
62 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
64 mApps = getPackageManager().queryIntentActivities(mainIntent, 0);
  /packages/apps/Launcher2/src/com/android/launcher2/
AllAppsList.java 172 final Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
173 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
174 mainIntent.setPackage(packageName);
176 final List<ResolveInfo> apps = packageManager.queryIntentActivities(mainIntent, 0);
LauncherModel.java     [all...]
Launcher.java     [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
ManifestTestListAdapter.java 124 Intent mainIntent = new Intent(Intent.ACTION_MAIN);
125 mainIntent.addCategory(CATEGORY_MANUAL_TEST);
128 List<ResolveInfo> list = packageManager.queryIntentActivities(mainIntent,
  /development/samples/ApiDemos/src/com/example/android/apis/
ApiDemos.java 58 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
59 mainIntent.addCategory(Intent.CATEGORY_SAMPLE_CODE);
62 List<ResolveInfo> list = pm.queryIntentActivities(mainIntent, 0);
  /development/samples/Support13Demos/src/com/example/android/supportv13/
Support13Demos.java 58 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
59 mainIntent.addCategory("com.example.android.supportv13.SUPPORT13_SAMPLE_CODE");
62 List<ResolveInfo> list = pm.queryIntentActivities(mainIntent, 0);
  /development/samples/Support4Demos/src/com/example/android/supportv4/
Support4Demos.java 58 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
59 mainIntent.addCategory("com.example.android.supportv4.SUPPORT4_SAMPLE_CODE");
62 List<ResolveInfo> list = pm.queryIntentActivities(mainIntent, 0);
  /packages/apps/Settings/src/com/android/settings/users/
UserDetailsSettings.java 208 final Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
209 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
210 List<ResolveInfo> apps = mPm.queryIntentActivities(mainIntent, 0);
  /packages/providers/ApplicationsProvider/src/com/android/providers/applications/
ApplicationsProvider.java 511 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
512 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
515 mainIntent.setPackage(packageName);
518 List<ResolveInfo> activities = manager.queryIntentActivities(mainIntent, 0);
  /development/samples/Home/src/com/example/android/home/
Home.java 486 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
487 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
489 final List<ResolveInfo> apps = manager.queryIntentActivities(mainIntent, 0);

Completed in 162 milliseconds