是否有任何规则(或仅仅是正则表达式)解释当< < < < a> 标签?
我问我正在浪费时间试图找出导致某些链接可点击的原因,而其他链接则无法点击(呈现为纯文本),例如
如果你在中坚持以下所有
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”属性。