嗨,我知道如何在xml中的字符串中嵌入html。
<string name="our_policy">Our app
<a href="www.google.com">Policy</a> and
<a href="www.google.com">Terms</a>
</string>
但是我必须在运行时添加更多内容。如何在运行时将html链接嵌入到字符串中并通过Intent发送到gmail.Any帮助将受到赞赏并提前感谢。
答案 0 :(得分:0)
你可以使用
intent.putExtra(Intent.EXTRA_TEXT,Html.fromHtml("<a href=http://www.google.com >Google</a>"));
这是更好的方式。