Dialing a phone call on click of textview in android

Add this attribute to your textview component within the XML layout file like this:

<TextView 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:autoLink="phone"
    android:text="123 123 1234" />

Leave a Comment