我从我的 ressource 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 显示为链接。但是当我点击链接时,我什么也没有!!!没有导航器启动??