Guest User

Untitled

a guest
Dec 13th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. if(name.length() > 0) {
  2. Intent intent = new Intent(Intent.ACTION_SENDTO);
  3. intent.setData(Uri.parse("mailto:")); // only email apps should handle this
  4. intent.putExtra(Intent.EXTRA_SUBJECT,
  5. getString(R.string.order_summary_email_subject, name));
  6. intent.putExtra(Intent.EXTRA_TEXT, priceMessage);
  7. intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  8. if (intent.resolveActivity(getPackageManager()) != null) {
  9. startActivity(intent);
  10. }
  11. }
  12. else {
  13. Toast.makeText(this, getString(R.string.name_field_blank),
  14. Toast.LENGTH_LONG).show();
  15. }
Add Comment
Please, Sign In to add comment