AIDL 및 반사 메커니즘 을 통 해 숨겨 진 API 로 전 화 를 끊 습 니 다.

3685 단어 aidl
1.프로젝트 에 가방 을 새로 만 듭 니 다.com.android.internal.telephony.AIDL 을 사용 해 야 하기 때문에 이 가방 은 ITelephony.aidl 과 일치 합 니 다.이 가방 에 새 파일 을 만 듭 니 다.ITelephony.aidl
package com.android.internal.telephony; 
/* * Copyright (C) 2007 The Android Open Source Project
* * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* * [url=http://www.apache.org/licenses/LICENSE-2.0]http://www.apache.org/licenses/LICENSE-2.0[/url]
* * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

/**
* Interface used to interact with the phone. Mostly this is used by the
* TelephonyManager class. A few places are still using this directly.
* Please clean them up if possible and use TelephonyManager insteadl.
* * {@hide}
*/
interface ITelephony {
/** * End call or go to the Home screen *
* @return whether it hung up
*/
boolean endCall();

/** * Answer the currently-ringing call.
* * If there's already a current active call, that call will be
* automatically put on hold. If both lines are currently in use, the
* current active call will be ended. *
* TODO: provide a flag to let the caller specify what policy to use
* if both lines are in use. (The current behavior is hardwired to
* "answer incoming, end ongoing", which is how the CALL button
* is specced to behave.) *
* TODO: this should be a oneway call (especially since it's called
* directly from the key queue thread). */
void answerRingingCall();
}
이후 gen 아래 에서 자동 으로 ITelephony.java 2 가 생 성 됩 니 다.반 사 를 통 해 ITelephony 인 스 턴 스 를 생 성 합 니 다.
TelephonyManager telMgr = (TelephonyManager)getSystemService(
TELEPHONY_SERVICE);

// iTelephony
Class <TelephonyManager> c = TelephonyManager.class;
Method getITelephonyMethod = null;
try {
getITelephonyMethod = c.getDeclaredMethod("getITelephony", (Class[])null);
getITelephonyMethod.setAccessible(true);
} catch (SecurityException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (NoSuchMethodException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

try {
iTelephony = (ITelephony) getITelephonyMethod.invoke(telMgr, (Object[])null);
} catch (IllegalArgumentException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalAccessException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (InvocationTargetException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
이렇게 하면 iTelephony 의 endCall()방법 3 을 호출 할 수 있 습 니 다.AndroidManifest.xml 에 권한 을 추가 합 니 다

좋은 웹페이지 즐겨찾기