如何在拨出呼叫中检测应答或拒绝状态

时间:2013-02-14 16:34:42

标签: android broadcastreceiver call telephonymanager phone-state-listener

我尝试为android编写一个程序。我想用我的程序打电话,然后识别出呼叫状态。使用流动功能我可以识别挂出状态和回答状态它不起作用。我尝试这个功能,但它不起作用

private class PhoneCallListener extends PhoneStateListener {

    private boolean isPhoneCalling = false;

    String LOG_TAG = "LOGGING 123";

    @Override
    public void onCallStateChanged(int state, String incomingNumber) {

        if (TelephonyManager.CALL_STATE_RINGING == state) {
            // phone ringing
            Log.i(LOG_TAG, "RINGING, number: " + incomingNumber);
        }

        if (TelephonyManager.CALL_STATE_OFFHOOK == state) {
            // active
            Log.i(LOG_TAG, "OFFHOOK");

            isPhoneCalling = true;
        }

        if (TelephonyManager.CALL_STATE_IDLE == state) {
            // run when class initial and phone call ended, need detect flag
            // from CALL_STATE_OFFHOOK
            Log.i(LOG_TAG, "IDLE");

            if (isPhoneCalling) {

                Log.i(LOG_TAG, "restart app");

                // restart app
                Intent i = getBaseContext().getPackageManager()
                        .getLaunchIntentForPackage(
                                getBaseContext().getPackageName());
                i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
                startActivity(i);

                isPhoneCalling = false;
            }

        }
    }
}

1 个答案:

答案 0 :(得分:-2)

使用CALL_STATE_IDLE和CALL_STATE_OFFHOOK无法做到这一点。 你必须以编程方式检测传出铃声的结束......

相关问题