-1

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

4

1 回答 1

2

只需使用Linkify自动查找网站:

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:autoLink="web"
    android:text="@string/description"
    android:textSize="12dp"
    android:textStyle="bold" />

然后从文本中取出 html:

<string name="description">Hello please look into www.webtour.dk</string>
于 2012-06-30T23:10:16.977 回答