Searched refs:sharingIntent (Results 1 – 2 of 2) sorted by relevance
400 Intent sharingIntent = new Intent(Intent.ACTION_SEND); in populateNotificationActions() local401 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()
12686 Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND); in shareSelectedText() local12687 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()