I want to use Service for Phone number

47 Views Asked by At

See the view here I want to do this only, like when someone click on a number format, then my app should also be visible in the OPEN WITH list...

1

There are 1 best solutions below

0
Android Geek On

Add android:autoLink="phone" into the TextView.

For example:

<TextView
    android:id="@+id/tvMsg"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:autoLink="phone"
    android:textColorLink="@color/purple_500"/>

For more info please check these questions: Question1 and Question2