私は 1 時間以上かけて多くの例を調べましたが、TextView にテキストを設定して Web URL にリンクするために実際に機能するものはありません。
サンプルコード!
text8 = (TextView) findViewById(R.id.textView4);
text8.setMovementMethod(LinkMovementMethod.getInstance());
Strings.xml
<string name="urltext"><a href="http://www.google.com">Google</a></string>
main.xml
<TextView
android:id="@+id/textView4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:autoLink="web"
android:linksClickable="true"
android:text="@string/urltext"
android:textAppearance="?android:attr/textAppearanceMedium" />
現在、このコードはテキストを「Google」として表示しますが、ハイパーリンクされておらず、クリックしても何も起こりません。