开发者

Android Outlook

I want to ask how to open the outlook in the android device. how can i send the mail with the android outlook. i want to create the android application in which user select the email address after selecting the E-Mail address android outlook will open in the device after that he write the message in 开发者_如何转开发the message body. and after clicking on the send option mail will send to the user.


Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); emailIntent.setType("text/plain"); emailIntent.putExtra(Intent.EXTRA_EMAIL, new String[] {}); emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "HomeworkNowSubject"); emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, "HomeworkNowBody"); startActivity(Intent.createChooser(emailIntent, "Email:"));

but please ensure that it will perform only "onclicklistener" event not on "onCreate"

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜