リソースのstrings.xmlから文字列を取得し、その文字列をTextViewに入れます。
strings.xml 内:
<string name="description">Hello please look into <a href="http://www.webtour.dk">www.webtour.dk</a></string>
main.xml で:
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/description"
android:textSize="12dp"
android:textStyle="bold" />
この結果は良い結果になりました。www.webtour.dk がリンクとして表示されます。しかし、リンクをクリックしても何も得られません!!! ナビゲーターが起動しない??