Home
last modified time | relevance | path

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

/packages/providers/DownloadProvider/src/com/android/providers/downloads/
DDownloadReceiver.java153 Intent activityIntent = new Intent(Intent.ACTION_VIEW); in openDownload() local
155 activityIntent.setDataAndType(path, mimetype); in openDownload()
156 activityIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in openDownload()
158 context.startActivity(activityIntent); in openDownload()
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppUtility.java191 Intent activityIntent = new Intent(Intent.ACTION_VIEW); in openReceivedFile() local
192 activityIntent.setDataAndType(path, mimetype); in openReceivedFile()
194 activityIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in openReceivedFile()
197 context.startActivity(activityIntent); in openReceivedFile()