这是我的代码:
TextView aboutL1 = (TextView) findViewById(R.id.aboutL2);
aboutL1.setText(Html.fromHtml("This app is open source.<br>The source code is hosted on <a href=\"http://herp.com/derp\">Github</a> "));
Linkify.addLinks(aboutL1, Linkify.ALL);
github这个词显示为一个链接,但当我点击链接时没有任何 react ......
最佳答案
您需要致电 setMovementMethod :
aboutL1.setMovementMethod(LinkMovementMethod.getInstance());
(您可能甚至不需要调用
Linkify.addLinks
,因为您使用了 Html.fromHtml
,但我记不清了)。关于android - 如何使android中的 anchor 标签可点击,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14502709/