我尝试为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;
            }
        }
    }
}