我需要一种在接听电话时获取状态的方法。但是,在OFFHOOK状态下,我也用于呼叫去电(ACTION_CALL)。如何在不覆盖拨出电话活动的情况下添加遮篷状态?

public class OutgoingBroadcastReceiver extends BroadcastReceiver {

private Intent mIntent;
private String phonenumber = null;
public static boolean wasRinging;

@Override
public void onReceive(Context context, Intent intent) {
    mIntent = intent;

    MyPhoneStateListener phoneListener = new MyPhoneStateListener(context);
    TelephonyManager telephony = (TelephonyManager) context
            .getSystemService(Context.TELEPHONY_SERVICE);
    telephony.listen(phoneListener, PhoneStateListener.LISTEN_CALL_STATE);

    phonenumber = intent.getStringExtra(Intent.EXTRA_PHONE_NUMBER);

}

public class MyPhoneStateListener extends PhoneStateListener {
    private final Context context;

    public MyPhoneStateListener(Context context) {
        this.context = context;

    }

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


        switch (state) {

        case TelephonyManager.CALL_STATE_IDLE:

            wasRinging = true;
            break;

        case TelephonyManager.CALL_STATE_OFFHOOK:

                Log.e("%%%%%%%%%%%%%%%%%%%%%%%%%%%t", "OFFHOOK");
            if (UIUDialer.isOutgoingCall() == true) {

                //Do my work when outgoing call is detected
            }

            else if (!wasRinging)
            {

                    Log.e("%%%%%%%%%%%%%%%%%%%%%%%%%%%t", "WASRINGING");
                //Do my work when outgoing call is awnsered

            }



            context.sendBroadcast(new Intent("finish_incoming"));
            wasRinging = true;
            break;

        case TelephonyManager.CALL_STATE_RINGING:

            wasRinging = true;
            break;
        }
    }

}


}

最佳答案

没有为此提供的公共API。

10-08 03:39