0

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...

a_local_nobody
  • 7,947
  • 5
  • 29
  • 51

1 Answers1

0

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

Android Geek
  • 8,956
  • 2
  • 21
  • 35