Searched refs:sharingIntent (Results 1 – 1 of 1) sorted by relevance
28 Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND); in launch() local29 sharingIntent.setType("text/plain"); in launch()30 sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Notification Code"); in launch()31 sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, shareBody); in launch()32 context.startActivity(Intent.createChooser(sharingIntent, title)); in launch()