Created
February 12, 2015 12:08
-
-
Save TakWolf/963dc10418b206f58990 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//先跳转到邮件 | |
Intent intent = new Intent(Intent.ACTION_SENDTO); | |
intent.setData(Uri.parse("mailto:[email protected]")); | |
//判断能否跳转 | |
if (intent.resolveActivity(getPackageManager()) != null) { //可以接收 | |
intent.putExtra(Intent.EXTRA_SUBJECT, "邮件标题"); | |
intent.putExtra(Intent.EXTRA_TEXT, "邮件正文啦啦啦~"); | |
startActivity(intent); | |
} else { //不能跳转 | |
Toast.makeText(this, "没有安装邮件客户端", Toast.LENGTH_SHORT).show(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment