3

这是我的代码:

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这个词显示为一个链接,但是当我点击链接时没有任何反应......

4

2 回答 2

10

您需要调用setMovementMethod

aboutL1.setMovementMethod(LinkMovementMethod.getInstance());

(你可能甚至不需要打电话,Linkify.addLinks因为你用过Html.fromHtml,但我不完全记得)。

于 2013-01-25T07:43:17.557 回答
1
aboutL1.setLinksClickable(true);

XML中应该是

<TextView
    android:id="@+id/aboutL2"
    android:autoLink="web"
    android:linksClickable="true"
/>
于 2013-01-25T07:47:58.043 回答