0
在我的應用中啓動Gmail編輯器com.google.android.gm.ComposeActivity時,我可以使用intent參數EXTRA_EMAIL設置爲電子郵件地址。無論如何,如果我的設備上有多個Gmail帳戶,可以設置ComposeActivity的默認電子郵件地址?如何在Gmail編輯器中爲from字段設置默認電子郵件地址
Intent sendIntent = new Intent(android.content.Intent.ACTION_SEND);
sendIntent.setType("plain/text");
sendIntent.putExtra(Intent.EXTRA_TEXT, body);
sendIntent.putExtra(Intent.EXTRA_EMAIL, [email protected]);
sendIntent.putExtra(Intent.EXTRA_BCC, "[email protected]");
sendIntent.putExtra(Intent.EXTRA_CC, "[email protected]");
sendIntent.putExtra(Intent.?????, "[email protected]"); //Can we set the from email?
sendIntent.setPackage("com.google.android.gm");
startActivity(sendIntent);
謝謝。