로딩
요청 처리 중입니다...

Android/JAVA - ITelephony 추가하는 방법

 Android/JAVA - ITelephony 추가하는 방법

1. Make Package 2.

Name : com.android.internal.telephony 3. ITelephony.aidl 생성 5.

ITelephony.aidl 내용 삽입 인터넷에 돌아다니는 ITelephony.aidl 내용을 복사하여 붙여 넣거나, 필요한 부분만 추가. package com.android.internal.telephony; import android.os.Bundle; import java.util.List; interface ITelephony { /** * Dial a number. This doesn't place the call.

It displays * the Dialer screen. * @param number the number to be dialed. If null, this * would display the Dialer screen with no number pre-filled. */ void dial(String number); ...