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

  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadReceiver.java 152 Intent activityIntent = new Intent(Intent.ACTION_VIEW);
154 activityIntent.setDataAndType(path, mimetype);
155 activityIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
157 context.startActivity(activityIntent);
  /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);
  /development/samples/ApiDemos/src/com/example/android/apis/
ApiDemos.java 95 addItem(myData, nextLabel, activityIntent(
121 protected Intent activityIntent(String pkg, String componentName) {
  /development/samples/Support13Demos/src/com/example/android/supportv13/
Support13Demos.java 95 addItem(myData, nextLabel, activityIntent(
121 protected Intent activityIntent(String pkg, String componentName) {
  /development/samples/Support4Demos/src/com/example/android/supportv4/
Support4Demos.java 95 addItem(myData, nextLabel, activityIntent(
121 protected Intent activityIntent(String pkg, String componentName) {
  /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 251 milliseconds