如何在Android Android中嵌入html链接?

时间:2016-07-18 14:01:16

标签: android html href

嗨,我知道如何在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帮助将受到赞赏并提前感谢。

1 个答案:

答案 0 :(得分:0)

你可以使用

intent.putExtra(Intent.EXTRA_TEXT,Html.fromHtml("<a href=http://www.google.com >Google</a>")); 

这是更好的方式。