Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
DGlobalScreenshot.java400 Intent sharingIntent = new Intent(Intent.ACTION_SEND); in populateNotificationActions() local
401 sharingIntent.setType("image/png"); in populateNotificationActions()
402 sharingIntent.putExtra(Intent.EXTRA_STREAM, uri); in populateNotificationActions()
408 sharingIntent.setClipData(clipdata); in populateNotificationActions()
409 sharingIntent.putExtra(Intent.EXTRA_SUBJECT, subject); in populateNotificationActions()
410 sharingIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION); in populateNotificationActions()
415 Intent sharingChooserIntent = Intent.createChooser(sharingIntent, null, in populateNotificationActions()
/frameworks/base/core/java/android/widget/
DTextView.java12686 Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND); in shareSelectedText() local
12687 sharingIntent.setType("text/plain"); in shareSelectedText()
12688 sharingIntent.removeExtra(android.content.Intent.EXTRA_TEXT); in shareSelectedText()
12690 sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, selectedText); in shareSelectedText()
12691 getContext().startActivity(Intent.createChooser(sharingIntent, null)); in shareSelectedText()