I am using below code for opening dial up when clicking on TextView. The problem is it is not working on samsung tablet 10 inch device. It is opening a dialogue box with options 'saving contact' and 'close' rather than opening dial up. I have tested using the same code on Lenovo 7 inch(using api level 19) and Motorolla droid turbo (using api level 22) it is working fine but samsung 10 inch tablet (using api level 21) it is showing dialogue with mentioned options.Am I missing something or this is api specific behavior? Below is the code.
<TextView
android:layout_marginLeft="10dp"
android:textColor="@color/white_color"
android:layout_marginTop="10dp"
android:id="@+id/tv_phone"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:autoLink="phone"
android:textColorLink="@color/white_color"
android:layout_below="@+id/tv_address"
android:text="PH: (800) 579-4875 (310) 534-1505" />