Monday, October 1, 2018

Whats the easiest way to detect links on Android text view and launch web browser?

Just have the below !

    android:text="www.google..com"
    android:id="@+id/tv_linkable"
    android:layout_height="wrap_content"
    android:layout_width="fill_parent"
    android:autoLink="web"
    android:linksClickable="true">



references:
https://stackoverflow.com/questions/6910703/android-active-link-of-url-in-textview

No comments:

Post a Comment