[Android] 전화 걸기, 전화 열기(ACTION_DIAL,ACTION_CALL) 전화 열기 ACTION_DIAL Intent actionDial = new Intent(Intent.ACTION_DIAL, Uri.parse("tel:" + number)); startActivity(actionDial); 전화걸기 ACTION_CALL Intent actionCall = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + number)); startActivity(actionCall); 옛날 작성 글/Android 2023.10.31