gpt4 book ai didi

javascript - 如何将我的字符串传递给电子邮件 Intent ?

转载 作者:太空宇宙 更新时间:2023-11-04 12:13:31 24 4
gpt4 key购买 nike

        @OverrideView view){
StringBuffer buffer = new StringBuffer();
buffer.append(textQr = text.getText().toString().trim());
buffer.append(text2Qr = text2.getText().toString().trim());
buffer.append(text3Qr = text3.getText().toString().trim());
String pass = buffer.toString();



MultiFormatWriter multiFormatWriter = new MultiFormatWriter();
try{
BitMatrix bitMatrix = multiFormatWriter.encode(pass, BarcodeFormat.QR_CODE, 300,300);
BarcodeEncoder barcodeEncoder = new BarcodeEncoder();
Bitmap bitmap = barcodeEncoder.createBitmap(bitMatrix);
image.setImageBitmap(bitmap);

我已经使用 Stringbuffer 类捕获了所有字符串。我想做一个电子邮件生成器。 text,text2,text3 是它们各自的收件人、主题、正文。当我生成并发送电子邮件时,文本不会包含各自的内容。我该怎么做?

最佳答案

试试这个

Intent emailIntent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts(
"mailto", "support@hello.com", null));
emailIntent.putExtra(Intent.EXTRA_SUBJECT, "Hello World");
emailIntent.putExtra(Intent.EXTRA_TEXT, "ABC");
startActivity(Intent.createChooser(emailIntent, "Send email..."));

关于javascript - 如何将我的字符串传递给电子邮件 Intent ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39651304/

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