I am using this:
public void onCallStateChanged(int state, String incomingNumber)
which is listening to:
telephonyManager.listen(listener,PhoneStateListener.LISTEN_CALL_STATE);
I want to know both outgoing and incoming calls but for now I only get incoming calls (when state changes is ringing). Can anyone tell me when can I detect outgoing call and its end
Also is there a way to simulate outgoing calls in Eclipse emulator. was able to do that for incoming calls via emulator control in eclipse.