outgoing call detect in PhoneStateListener
android, listener, telephonymanager
Solution
You can write a broadcast receiver for `android.intent.action.NEW_OUTGOING_CALL`.
See here Sample code is available
Problem
I want to detect outgoing call in android application . Actually I can detect outgoing calls but it is also working for incoming too and I don't want that. I need it to work only for outgoing. here is my code.... ``` boolean ringing = false; boolean offhook = false; public void onCallStateChanged(int state, String incomingNumber) { switch (state) { case TelephonyManager.CALL_STATE_IDLE: if((!ringing)&& offhook){ ///incomming call } break; case TelephonyManager.CALL_STATE_RINGING: callerPhoneNumber = incomingNumber; Log.d(TAG, "RINGING"); ringing = true; offhook = false; break; case TelephonyManager.CALL_STATE_OFFHOOK: Log.d(TAG, "OFFHOOK"); offhook = true; ringing = false; break; } ```