andreluizreis
8/30/2017 - 3:46 PM

How do I get the dialer to open with phone number displayed? ||| Link: https://stackoverflow.com/questions/11699819/how-do-i-get-the-dialer-

How do I get the dialer to open with phone number displayed? ||| Link: https://stackoverflow.com/questions/11699819/how-do-i-get-the-dialer-to-open-with-phone-number-displayed

Intent intent = new Intent(Intent.ACTION_DIAL);
intent.setData(Uri.parse("tel:0123456789"));
startActivity(intent); 

// The 'tel:' prefix is required

// From a Text Link
android:autoLink="phone"