Home
last modified time | relevance | path

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

/sdk/apps/NotificationStudio/src/com/android/notificationstudio/action/
DShareCodeAction.java28 Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND); in launch() local
29 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()