Slide 54
Slide 54 text
Using other applications
Sharing via email
But it launch in the same task, which is not the expected behaviour on 5.0+
final Intent target = new Intent()
.setAction(Intent.ACTION_SENDTO)
.setData(Uri.fromParts(“mailto", "email@address.com", null))
.putExtra(Intent.EXTRA_TEXT, "Hello Droidcon!");
startActivity(Intent.createChooser(target, "My chooser"));