Start the dialer

suggest change

This example shows how to open a default dialer (an app that makes regular calls) with a provided telephone number already in place:

Intent intent = new Intent(Intent.ACTION_DIAL);
intent.setData(Uri.parse("tel:9988776655")); //Replace with valid phone number. Remember to add the tel: prefix, otherwise it will crash.
startActivity(intent);

Result from running the code above:

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents