1

如何通过按钮断开电话。我正在使用以下代码:

try {
        // Java reflection to gain access to TelephonyManager's
        // ITelephony getter
        Log.v(TAG, "Get getTeleService...");
        Class c = Class.forName(tm.getClass().getName());
        Method m = c.getDeclaredMethod("getITelephony");
        m.setAccessible(true);
        com.android.internal.telephony.ITelephony telephonyService = (ITelephony) m
                .invoke(tm);
    } catch (Exception e) {
        e.printStackTrace();
        Log.e(TAG, "FATAL ERROR: could not connect to telephony subsystem");
        Log.e(TAG, "Exception object: " + e);
4

1 回答 1

1

要以编程方式断开呼叫,您必须ITelephony.AIDL在项目中添加文件。如果您已添加它,那么您的包名称必须是com/android/internal/telephony/ITelephony.AIDL:有关详细信息,请参阅阻止来电从这里下载 AIDL 文件。

断开呼叫使用endCall();方法ITelephony

于 2013-01-05T09:46:30.363 回答