Make call from Android Activity
Posted by Tonio | Filed under Tutorial
Android make it simple to start a phone call from any application. Just use the following sample code into your activity :
String uri = "tel:666-666-666"; Intent intent = new Intent(Intent.ACTION_CALL); intent.setData(Uri.parse(url)); startActivity(intent);

