Убей телефонный звонок программно в Орео - PullRequest
0 голосов
/ 08 мая 2018

Я использую этот метод для завершения вызова в Android

 public boolean killCall(Context context) {
    try {
        // Get the boring old TelephonyManager
        TelephonyManager telephonyManager =
                (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);

        // Get the getITelephony() method
        Class classTelephony = Class.forName(telephonyManager.getClass().getName());
        Method methodGetITelephony = classTelephony.getDeclaredMethod("getITelephony");

        // Ignore that the method is supposed to be private
        methodGetITelephony.setAccessible(true);

        // Invoke getITelephony() to get the ITelephony interface
        Object telephonyInterface = methodGetITelephony.invoke(telephonyManager);

        // Get the endCall method from ITelephony
        Class telephonyInterfaceClass =
                Class.forName(telephonyInterface.getClass().getName());
        Method methodEndCall = telephonyInterfaceClass.getDeclaredMethod("endCall");

        // Invoke endCall()
        methodEndCall.invoke(telephonyInterface);
    } catch (Exception ex) { // Many things can go wrong with reflection calls
        Log.d(TAG, "PhoneStateReceiver **" + ex.getCause().getStackTrace());
        return false;
    }
    return true;
}

Это работает до Oreo, но не работает на Android и не знает, чего не хватает.

С наилучшими пожеланиями: Али

1 Ответ

0 голосов
/ 11 июля 2019

Я делаю твой код и следую объяснениям: Завершить вызов в Android программно

добавить следующее разрешение

<uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />
<uses-permission android:name="android.permission.CALL_PHONE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />

тогда это работает очень хорошо, мой код работает на Android Oreo версии.

...