Sunday, November 1, 2015

How to call with android

AndroidManifest

<uses-permission android:name="android.permission.CALL_PHONE" />


Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:" + Your_Phone_Number));
startActivity(callIntent);