Searched refs:shareIntent (Results 1 - 8 of 8) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/testing/
H A DMemoryDumpActivity.java128 Intent shareIntent = new Intent(Intent.ACTION_SEND);
129 shareIntent.setType("application/zip");
132 shareIntent.putExtra(Intent.EXTRA_SUBJECT, String.format("Launcher memory dump (%d)", myPid));
141 shareIntent.putExtra(Intent.EXTRA_TEXT, body.toString());
146 shareIntent.putExtra(Intent.EXTRA_STREAM, pathUri);
147 context.startActivity(shareIntent);
/packages/apps/Messaging/src/com/android/messaging/ui/photoviewer/
H A DBuglePhotoViewController.java112 final Intent shareIntent = new Intent();
113 shareIntent.setAction(Intent.ACTION_SEND);
114 shareIntent.setType(contentType);
115 shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(photoUri));
116 mShareActionProvider.setShareIntent(shareIntent);
/packages/apps/Dialer/src/com/android/dialer/voicemail/
H A DVoicemailPlaybackPresenter.java987 Intent shareIntent = new Intent();
988 shareIntent.setAction(Intent.ACTION_SEND);
989 shareIntent.putExtra(Intent.EXTRA_STREAM, voicemailFileUri);
990 shareIntent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
991 shareIntent.setType(mContext.getContentResolver()
993 return shareIntent;
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DGalleryActionBar.java425 public void setShareIntents(Intent sharePanoramaIntent, Intent shareIntent, argument
431 mShareIntent = shareIntent;
433 mShareActionProvider.setShareIntent(shareIntent);
H A DPhotoPage.java364 Intent shareIntent = createShareIntent(mCurrentPhoto);
366 mActionBar.setShareIntents(panoramaIntent, shareIntent, PhotoPage.this);
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
H A DStopwatchFragment.java340 final Intent shareIntent = new Intent(Intent.ACTION_SEND)
348 final Intent shareChooserIntent = Intent.createChooser(shareIntent, title);
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
H A DConversationFragment.java387 final Intent shareIntent = new Intent();
388 shareIntent.setAction(Intent.ACTION_SEND);
390 shareIntent.putExtra(Intent.EXTRA_TEXT, data.getText());
391 shareIntent.setType("text/plain");
393 shareIntent.putExtra(
395 shareIntent.setType(attachmentToShare.getContentType());
398 startActivity(Intent.createChooser(shareIntent, title));
/packages/apps/Camera2/src/com/android/camera/
H A DCameraActivity.java426 Intent shareIntent = getShareIntentByData(data);
427 if (shareIntent != null) {
429 launchActivityByIntent(shareIntent);

Completed in 1042 milliseconds