본문 바로가기
Programing/Android / Java

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

by CtrlCV맨 2014. 1. 26.

// In Manifest


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