我希望在点击电子邮件地址时填写自动邮件。但出于某种原因,html< -a href =" link"> here< - / a>不起作用。这是我的代码,希望有人在android中有一些经验。
这是我的onclicklistener中的代码:
String link="http://www.thisisthelink.com";
String body=
"following link:<a href="+link+">hier</a>";
Intent email = new Intent(Intent.ACTION_SEND);
email.putExtra(Intent.EXTRA_EMAIL, new String[]{current.getOuder_email()});
email.putExtra(Intent.EXTRA_SUBJECT, "SUBJECT");
email.putExtra(Intent.EXTRA_TEXT, Html.fromHtml(body));
email.setType("message/rfc822");
startActivityForResult(Intent.createChooser(email, "Email"),1);