다이얼러를 통해 걸 때에는 Intent.ACTION_DIAL을, 바로 전화를 걸 때에는 Intent.ACTION_CALL을 사용.
ACTION_CALL을 사용할 때에는 다음 퍼미션을 Manifest에 추가.
<uses-permissionandroid:name="android.permission.CALL_PHONE"/>
1 2 3 4 | Uri number = Uri.parse( "tel:" + "010-829x-09xx" ); //Intent intent = new Intent(Intent.ACTION_DIAL, number); Intent intent = new Intent(Intent.ACTION_CALL, number); startActivity(intent); |
최종 수정일 : 2012.12.07