# App/Android(JAVA)

[안드로이드 스튜디오] Intent로 화면 전환하여 전화 걸기


String tel = "010-0000-0000";

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


728x90