How to make a phone call from an android application?

Intent in = new Intent();  
in.setAction(Intent.ACTION_CALL); 
in.setData(Uri.parse("tel:12345")); 
startActivity(in);

No comments:

Post a Comment