Searched refs:sharingIntent (Results 1 – 2 of 2) sorted by relevance
271 Intent sharingIntent = new Intent(Intent.ACTION_SEND); in doInBackground() local272 sharingIntent.setType("image/png"); in doInBackground()273 sharingIntent.putExtra(Intent.EXTRA_STREAM, uri); in doInBackground()274 sharingIntent.putExtra(Intent.EXTRA_SUBJECT, subject); in doInBackground()280 Intent chooserIntent = Intent.createChooser(sharingIntent, null, in doInBackground()
11186 Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND); in shareSelectedText() local11187 sharingIntent.setType("text/plain"); in shareSelectedText()11188 sharingIntent.removeExtra(android.content.Intent.EXTRA_TEXT); in shareSelectedText()11189 sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, selectedText); in shareSelectedText()11190 getContext().startActivity(Intent.createChooser(sharingIntent, null)); in shareSelectedText()