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

  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadReceiver.java 141 Intent activityIntent = new Intent(Intent.ACTION_VIEW);
142 activityIntent.setDataAndType(path, mimetype);
143 activityIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
145 context.startActivity(activityIntent);
  /development/samples/ApiDemos/src/com/example/android/apis/
ApiDemos.java 93 addItem(myData, nextLabel, activityIntent(
118 protected Intent activityIntent(String pkg, String componentName) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppUtility.java 186 Intent activityIntent = new Intent(Intent.ACTION_VIEW);
187 activityIntent.setDataAndType(path, mimetype);
189 activityIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
192 context.startActivity(activityIntent);
  /cts/tests/tests/content/src/android/content/pm/cts/
PackageManagerTest.java 121 Intent activityIntent = new Intent(ACTIVITY_ACTION_NAME);
125 new ComponentName(PACKAGE_NAME, cmpActivityName), null, activityIntent, 0);
130 new ComponentName(PACKAGE_NAME, ACTIVITY_NAME), null, activityIntent, 0);
135 mPackageManager.queryIntentActivities(activityIntent, 0);
    [all...]

Completed in 50 milliseconds