Redirect Call in Android

Web Hosting
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);


Web Hosting That's it, Happy Coding.