我有这个代码,它预先填写了一封电子邮件并抛出了一个意图:
Intent email_intent = new Intent(Intent.ACTION_SEND_MULTIPLE);
email_intent.putExtra(Intent.EXTRA_SUBJECT,
"iTempco"+getString(R.string.superficie_scambio));
email_intent.putExtra(Intent.EXTRA_TEXT,{{here_the_html_code}});
email_intent.setType("text/html");
startActivity(email_intent);
您在哪里看到 {{here_the_html_code}} 我有一个带有 html 代码的字符串(工作完美)。问题是,当活动被抛出时,我在客户端的文本区域中看到了 html 代码(源代码),而不是“转换后的”
我怎样才能?
谢谢。