Intent intent = new Intent(Intent.ACTION_DIAL, Uri.parse(url));startActivity(intent); -ACTION_DIAL은 전화걸기 앱에 전화번호만 표시해준다. Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse(url));startActivity(intent); -ACTION_CALL은 전화를 바로 걸어준다.(대신에 uses-permission에서 android.permission.CALL_PHONE 권한을 받아야 한다.) 1cs 이렇게.