경제적 자유를 위해

열심히 살아보자

옛날 작성 글/Android

[Android] 전화 걸기, 전화 열기(ACTION_DIAL,ACTION_CALL)

따식 2023. 10. 31. 01:00
728x90

전화 열기 ACTION_DIAL

Intent actionDial = new Intent(Intent.ACTION_DIAL, Uri.parse("tel:" + number));
startActivity(actionDial);

 

전화걸기 ACTION_CALL

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

Intent actionCall = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + number));
startActivity(actionCall);
728x90