Advertisement
Guest User

Untitled

a guest
Mar 27th, 2015
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. Intent emailIntent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts(
  2. "mailto","abc@gmail.com", null));
  3. emailIntent.putExtra(Intent.EXTRA_SUBJECT, "EXTRA_SUBJECT");
  4. startActivity(Intent.createChooser(emailIntent, "Send email..."));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement