Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android開發之來電電話掛斷實現

Android開發之來電電話掛斷實現

編輯:關於Android編程

在Android1.5版本之前,實現掛斷電話是非常容易的事,只需要調用TelephonyManager的endCall()方法就可以了,但在1.5版本之後,Google工程師為了手機的安全期間,把endCall的方法隱藏掉了。所以實現掛斷電話可以通過反射的方法,執行endCall方法。具體實現如下:

TelephonyManager在源碼裡是這樣描述的:Context.getSystemService(Context.TELEPHONY_SERVICE)},我們通過TELEPHONY_SERVICE系統服務調用就可以獲取。

registerService(TELEPHONY_SERVICE, new ServiceFetcher() {
                public Object createService(ContextImpl ctx) {
                    return new TelephonyManager(ctx.getOuterContext());
                }});

而 android.os.ServiceManager 有getService方法

/**
     * Returns a reference to a service with the given name.
     *
     * @param name the name of the service to get
     * @return a reference to the service, or null if the service doesn't exist
     */
    public static IBinder getService(String name) {
        return null;
    }

android.telephony.TelephonyManager 類是代理ITelephony接口的,可以看到裡面的endCall是被隱藏掉的。

/**
 * 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 {

    /**
     * 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.
     */

/**
     * End call or go to the Home screen
     *
     * @return whether it hung up
     */
    boolean endCall();



我們知道利用綁定服務可以調用裡面的方法,會返回一個IBinder對象,利用IBinder可以調用服務裡的方法。

TelephonyManager實際上就是系統電話服務的代理對象,通過aidl獲取IBinder,然後進一步的進行封裝。代理有限的方法。


TelephonyManager ------------------IBinder-------------------------系統服務

代理對象 aidl


所以實現需要一下步奏:

1 、 反射加載ServiceManager類。

2、 獲取IBinder對象執行getService方法。

3、 在項目中新建com.android.internal.telephony包(包名不能變),然後拷貝ITelephony.aidl。 在新建android.telephony包,拷貝NeighboringCellInfo.aidl 的進程通信接口兩個文件。

4、調用endCall方法。


實現方法如下:

private void endCall() {
			// IBinder iBinder = ServiceManager.getService(TELEPHONY_SERVICE);
			// ServiceManager 是被系統隱藏掉了 所以只能用反射的方法獲取
			try {
				// 加載ServiceManager的字節碼
				Class clazz = CallSMSSafeService.class.getClassLoader()
						.loadClass("android.os.ServiceManager");
				Method method = clazz.getDeclaredMethod("getService",
						String.class);
				IBinder iBinder = (IBinder) method.invoke(null,
						TELEPHONY_SERVICE);
				ITelephony.Stub.asInterface(iBinder).endCall();
			} catch (Exception e) {
				e.printStackTrace();
				Log.i(TAG, "攔截電話異常");
			}

		}



  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved