In this tutorial, I will show you the code on how to redirect from your android apps to mobile call. Just see the code below.
String phoneCallUri = "tel:911";
Intent phoneCallIntent = new Intent(Intent.ACTION_DIAL);
phoneCallIntent.setData(Uri.parse(phoneCallUri));
startActivity(phoneCallIntent);
That's it, Happy Coding.
No comments:
Post a Comment