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