Android TextView:Html.fromHtml() - <a> link tag rules?</a>中的有效网址/链接

时间:2015-04-09 10:21:57

标签: android textview fromhtml

是否有任何规则(或仅仅是正则表达式)解释当&lt; &lt; &lt; &lt; a&gt; 标签?

我问我正在浪费时间试图找出导致某些链接可点击的原因,而其他链接则无法点击(呈现为纯文本),例如

如果你在中坚持以下所有

TextView aboutText = (TextView) v.findViewById(R.id.about_text);
        aboutText.setText(Html.fromHtml(.....

称它接受/将呈现为链接:

<p> ... the <a href="http://developer.android.com/samples/index.html">Developer.android.com samples</a>, </p>  

<p> - https://en.wikipedia.org/wiki/Android_(operating_system)</p>

但它不会接受以下列出的维基百科链接:

    <p> - <a href="https://en.wikipedia.org/wiki/Android_(operating_system)">Wikipedia: 
Android</a></p>

textview 设置了 android:autoLink =“web”属性。

0 个答案:

没有答案