我在 TextView 中有一些带有链接的文本。现在我希望浏览器在用户点击链接时打开链接。我的 TextView 看起来像这样:
<string name="Info">Go to <a href="www.google.com">Google</a></string>
<TextView
android:id="@+id/Info"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/OptionMarginBottom"
android:autoLink="web"
android:linksClickable="true"
android:text="@string/Info" />
链接以蓝色正确显示,但我无法单击它。这是为什么?