如何在Android中创建邮件作曲屏幕?屏幕、邮件、如何在、Android

2023-09-08 08:47:52 作者:冷却的心

目前我公司在Android应用程序的工作,创建邮件作曲屏幕,所以我试图创建一个邮件筛选作曲家我的水平最好的,但我不知道,如何使这个屏幕?请任何一个指导我。

Currently i am working in Android application, To create mail composer screen so i tried to create a mail composer screen my level best, but i didn't know, how to make this screen? please any one guide me.

由于提前

我试过这样:

 Intent email = new Intent(Intent.ACTION_SEND);
    email.putExtra(Intent.EXTRA_EMAIL,new String[] { "yourid@gmail.com"});
    email.putExtra(Intent.EXTRA_SUBJECT,"Contact Us");
    email.putExtra(Intent.EXTRA_TEXT, text field here);
    email.setType("message/rfc822");
    startActivity(Intent.createChooser(email, "Choose an Email client :"));

结果:

推荐答案

您可以自动使用低于code为撰写邮件的android 显示这类您的设备上的画面。

You can use below code for the compose mail android automatically display this kind of the screen on your devices.

Intent email = new Intent(Intent.ACTION_SEND);
         email.putExtra(Intent.EXTRA_EMAIL,new String[] { "yourid@gmail.com"});
         email.putExtra(Intent.EXTRA_SUBJECT,"Contact Us");
         email.putExtra(Intent.EXTRA_TEXT, text field here);

                email.setType("message/rfc822");

                startActivity(Intent.createChooser(email, "Choose an Email client :"));

试试!祝你好运。

Try ! Good Luck.