如果String文件中设置了:
<string name="baidu"><a href="http://www.baidu.com">百度</a></string>
这样含有html的字段,
textView的text设置了
<TextView
android:id="@+id/baidu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/baidu"
android:textSize="16sp" />
那么出现超链接无效的情况:
1、可能textView设置了autoLink,去掉就行了
2、textView没有设置autolink,但是超链接还是无效,在java代码中添加
baidu_text= (TextView) findViewById(R.id.baidu);
baidu_text.setMovementMethod(LinkMovementMethod.getInstance());