๋ฐ์ํ
์ํ๋ ๋ฒํธ๋ก ๋ฐ๋ก ํตํ ๊ฑฐ๋ ๋ฐฉ๋ฒ์ ๋๋ค.
AndroidManifest.xml
<!-- ์ ํ๊ฑธ๊ธฐ -->
<uses-permission android:name="android.permission.CALL_PHONE" />
์๋ฐ์ฝ๋
String telNo = "010-0000-0000";
Intent call = new Intent(Intent.ACTION_CALL, Uri.parse("tel:/" + telNo));
startActivity(call);