Home
last modified time | relevance | path

Searched refs:activityIntent (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppUtility.java196 Intent activityIntent = new Intent(Intent.ACTION_VIEW); in openReceivedFile() local
197 activityIntent.setDataAndTypeAndNormalize(path, mimetype); in openReceivedFile()
199 activityIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in openReceivedFile()
202 context.startActivity(activityIntent); in openReceivedFile()
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
DStopwatchService.java136 Intent activityIntent = new Intent(getApplicationContext(), DeskClock.class); in onDestroy() local
137 activityIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in onDestroy()
138 activityIntent.putExtra( in onDestroy()
140 startActivity(activityIntent); in onDestroy()
/packages/apps/DeskClock/src/com/android/deskclock/timer/
DTimerReceiver.java298 Intent activityIntent = new Intent(context, DeskClock.class); in showCollapsedNotificationWithNext() local
299 activityIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in showCollapsedNotificationWithNext()
300 activityIntent.putExtra(DeskClock.SELECT_TAB_INTENT_EXTRA, DeskClock.TIMER_TAB_INDEX); in showCollapsedNotificationWithNext()
301 PendingIntent pendingActivityIntent = PendingIntent.getActivity(context, 0, activityIntent, in showCollapsedNotificationWithNext()