Searched refs:sharingIntent (Results 1 – 2 of 2) sorted by relevance
284 Intent sharingIntent = new Intent(Intent.ACTION_SEND); in doInBackground() local285 sharingIntent.setType("image/png"); in doInBackground()286 sharingIntent.putExtra(Intent.EXTRA_STREAM, uri); in doInBackground()292 sharingIntent.setClipData(clipdata); in doInBackground()293 sharingIntent.putExtra(Intent.EXTRA_SUBJECT, subject); in doInBackground()294 sharingIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION); in doInBackground()299 Intent sharingChooserIntent = Intent.createChooser(sharingIntent, null, in doInBackground()
12643 Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND); in shareSelectedText() local12644 sharingIntent.setType("text/plain"); in shareSelectedText()12645 sharingIntent.removeExtra(android.content.Intent.EXTRA_TEXT); in shareSelectedText()12647 sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, selectedText); in shareSelectedText()12648 getContext().startActivity(Intent.createChooser(sharingIntent, null)); in shareSelectedText()