android在textView上设置一个链接

时间:2017-09-06 02:45:25

标签: android

我正在尝试将链接附加到TextView。但我似乎无法让它发挥作用。

这是TextView

<TextView
       android:id="@+id/terms"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:gravity="center"
       android:clickable="true"
       android:linksClickable="true"
       android:text="@string/terms" />

这是setLink()方法

private void setLinks(){
        String termsURI = "";
        TextView termsTextView = (TextView) findViewById(R.id.terms);
        String termsLink = "<a href='www.google.com'>terms test</a>";
        termsTextView.setMovementMethod(LinkMovementMethod.getInstance());
        termsTextView.setText(Html.fromHtml(termsLink));
    }

我试过

How do I make links in a TextView clickable?

I want text view as a clickable link

Android TextView Hyperlink

所有3个都经过高度审核,对我不起作用。这让我相信我做错了什么。

这里有什么不对吗?或者可能是一些提示?

要添加一件事,我需要能够在方法中设置链接,因为我们的实时和调试环境不同。 (不同的域名)

1 个答案:

答案 0 :(得分:1)

也许你错过了#34; http://&#34;在URL字符串中。

请尝试这个:

String termsLink = "<a href='http://www.google.com'>terms test</a>";