gpt4 book ai didi

安卓发送邮件

转载 作者:行者123 更新时间:2023-11-29 15:30:48 25 4
gpt4 key购买 nike

在下面的 main.xml 中我有一个 edittext,我的问题是如何点击发送邮件按钮如何发送一封邮件,收件人地址总是被硬编码..

 mail.setOnClickListener(

@Override
public void onClick(View v) {
//How to sendmail to adress someadress@xx.com oblibk of send mail button

});

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:id="@+id/linearLayout3" android:layout_width="fill_parent" android:layout_height="fill_parent">
<EditText android:id="@+id/editText2" android:layout_width="fill_parent" android:layout_height="wrap_content">
<requestFocus></requestFocus>
</EditText>
<Button android:text="Send Mail" android:id="@+id/mail" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
<Button android:text="Back" android:id="@+id/back2" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>


</LinearLayout>

最佳答案

 final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);     
emailIntent.setType("plain/text");
emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[]{"youraddress@aaaaa.com"});
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, yourSubject);
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, yourBodyText);
context.startActivity(Intent.createChooser(intent, "Send mail..."));

关于安卓发送邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6973827/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com