亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何在安卓中打開gmail

如何在安卓中打開gmail

jeck貓 2022-10-20 17:21:07
我只是想通過我的應用程序打開 Gmail 應用程序,并想從我的應用程序設置電子郵件、主題和消息。我嘗試過 GmailService,但它不支持密件抄送或抄送電子郵件。鏈接:https ://github.com/yesidlazaro/GmailBackgroundBackgroundMail.newBuilder(this)    .withUsername("[email protected]")    .withPassword("password12345")    .withMailto("[email protected]")    .withType(BackgroundMail.TYPE_PLAIN)    .withSubject("this is the subject")    .withBody("this is the body")    .withOnSuccessCallback(new BackgroundMail.OnSuccessCallback() {        @Override        public void onSuccess() {            //do some magic        }    }).withOnFailCallback(new BackgroundMail.OnFailCallback() {        @Override        public void onFail() {            //do some magic        }    }).send();我想將密件抄送和抄送功能與附件、主題和消息一起使用。
查看完整描述

4 回答

?
慕無忌1623718

TA貢獻1744條經驗 獲得超4個贊

// 對于任何應用程序的電子郵件

Intent email= new Intent(Intent.ACTION_SENDTO);
                email.setData(Uri.parse("mailto:[email protected]"));
                email.putExtra(Intent.EXTRA_SUBJECT, "Subject");
                email.putExtra(Intent.EXTRA_TEXT, "My Email message");
                startActivity(email);


查看完整回答
反對 回復 2022-10-20
?
達令說

TA貢獻1821條經驗 獲得超6個贊

通過 Intent 打開 gmail


Intent intent = new Intent(Intent.ACTION_VIEW);

intent.setData(Uri.parse("[email protected]"));

intent.setClassName("com.google.android.gm", "com.google.android.gm.ComposeActivityGmail");

intent.putExtra(Intent.EXTRA_CC, new String[]{"[email protected]"});

intent.putExtra(Intent.EXTRA_BCC, new String[]{"[email protected]"});

intent.putExtra(Intent.EXTRA_SUBJECT, "your subject goes here...");

intent.putExtra(Intent.EXTRA_TEXT, "Your message content goes here...");

    

startActivity(intent);

只需在意圖參數中傳遞EXTRA_CC&EXTRA_BCC


編輯


以下答案適用于android 11


Intent intent = new Intent(Intent.ACTION_SENDTO);

intent.setData(Uri.parse("mailto:"));

intent.putExtra(Intent.EXTRA_EMAIL, new String[]{"[email protected]"});

intent.putExtra(Intent.EXTRA_SUBJECT, "Your subject here...");

intent.putExtra(Intent.EXTRA_TEXT,"Your message here...");

startActivity(intent);

編輯 2


val selectorIntent = Intent(Intent.ACTION_SENDTO)

selectorIntent.data = Uri.parse("mailto:")


val emailIntent = Intent(Intent.ACTION_SEND)

emailIntent.putExtra(Intent.EXTRA_EMAIL, arrayOf("[email protected]"))

emailIntent.putExtra(Intent.EXTRA_SUBJECT, "Subject here...")

emailIntent.putExtra(Intent.EXTRA_TEXT, "Email Body...")

emailIntent.selector = selectorIntent


activity!!.startActivity(Intent.createChooser(emailIntent, "Send email..."))


查看完整回答
反對 回復 2022-10-20
?
慕哥6287543

TA貢獻1831條經驗 獲得超10個贊

// 這是用于 Gmail 應用程序的

Intent email= new Intent(Intent.ACTION_VIEW);
            email.setType("message/rfc822")
            .setData(Uri.parse("mailto:[email protected]"))
            .putExtra(Intent.EXTRA_EMAIL, "[email protected]")
            .putExtra(Intent.EXTRA_SUBJECT, "Subject")
            .putExtra(Intent.EXTRA_TEXT, "My Email message")
            .setPackage("com.google.android.gm");
            startActivity(email);


查看完整回答
反對 回復 2022-10-20
?
哈士奇WWW

TA貢獻1799條經驗 獲得超6個贊

//這是用gmail打開的

Intent i = new Intent(Intent.ACTION_SENDTO);
            i.setType("text/plain");
            i.setData(Uri.parse("mailto:"));
            i.putExtra(Intent.EXTRA_EMAIL  , new String[]{"[email protected]"});
            i.putExtra(Intent.EXTRA_SUBJECT, "Mail Subject");
            i.putExtra(Intent.EXTRA_TEXT   , "massage");
            i.setPackage("com.google.android.gm");            try {
                startActivity(Intent.createChooser(i, "Send mail..."));
            } catch (android.content.ActivityNotFoundException ex) {
                Toast.makeText(AnotherActivity.this, "There are no email clients installed.", Toast.LENGTH_SHORT).show();
            }



查看完整回答
反對 回復 2022-10-20
  • 4 回答
  • 0 關注
  • 290 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號