I have some text with a link in a TextView. Now I want that the browser open the link if the user click on it. My TextView looks like this:
<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" />
The Link is displayed correct in blue but I can not click on it. Why is that?