私は使用しようとしています 意図アプリケーションからメールを送信しますが、メールの[宛先]フィールドには入力されません。件名やテキストを入力するコードを追加すると、問題なく動作します。[宛先]フィールドだけでは入力されません。
タイプを「text / plain」と「text / html」に変更してみましたが、同じ問題が発生します。誰か助けてくれますか?
public void Email(){
Intent emailIntent = new Intent(Intent.ACTION_SEND);
emailIntent.setType("message/rfc822"); //set the email recipient
String recipient = getString(R.string.IntegralEmailAddress);
emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL , recipient);
//let the user choose what email client to use
startActivity(Intent.createChooser(emailIntent, "Send mail using...")); }
使用しようとしているメールクライアントはGmailです