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...
            Asked
            
        
        
            Active
            
        
            Viewed 39 times
        
    1 Answers
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