안드로이드 인텐트로 전화 걸기 (How to make a call by Intent?)

2014. 1. 26. 04:42Programing/Android / Java

// In Manifest


-----------------------------------------------------------
// In Source
Intent sendIntent = new Intent(Intent.ACTION_CALL);
sendIntent.setData(Uri.parse("tel:" + "01012345678"));
startActivity(sendIntent);