其他分享
首页 > 其他分享> > android – 如何在TextView中单击链接?

android – 如何在TextView中单击链接?

作者:互联网

我定义了以下TextView:

<TextView android:layout_width="wrap_content"
    android:layout_height="wrap_content" android:text="@string/txtCredits"
    android:autoLink="web" android:id="@+id/infoTxtCredits"
    android:layout_centerInParent="true"
    android:linksClickable="true"></TextView>

其中@ string / txtCredits是一个包含< a href =“some site”>链接文本< / a>的字符串资源.

Android正在突出显示TextView中的链接,但它们不响应点击.有人能告诉我我做错了什么吗?我是否必须在我的活动中为TextView设置onClickListener,这对于这么简单?

看起来它与我定义字符串资源的方式有关.
这不起作用:

<string name="txtCredits"><a href="http://www.google.com">Google</a></string>

但这样做:

<string name="txtCredits">www.google.com</string>

这是一个无赖,因为我宁愿显示文本链接而不是显示完整的URL.

解决方法:

在API演示中,我找到了解决问题的方法:

Link.java:

    // text2 has links specified by putting <a> tags in the string
    // resource.  By default these links will appear but not
    // respond to user input.  To make them active, you need to
    // call setMovementMethod() on the TextView object.

    TextView t2 = (TextView) findViewById(R.id.text2);
    t2.setMovementMethod(LinkMovementMethod.getInstance());

我删除了TextView上的大多数属性以匹配演示中的属性.

<TextView
    android:id="@+id/text2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/txtCredits"/>

这解决了它.很难发现和修复.

重要提示:如果要调用setMovementMethod(),请不要忘记删除autoLink =“web”.

标签:android,clickable,hyperlink,textview
来源: https://codeday.me/bug/20190911/1803088.html