i need to get the number that i am calling from my android device programmatically. what i'm doing now is the following:

i listen for android.intent.action.PHONE_STATE being broadcasted which means that either i am being called or am calling (or receiving an sms etc.)

in a BroadcastReceiver i retrieve the extra "incoming_number" from the intent... so far so good - but sadly i cannot get the number which is being called if I initiate the call... how do i do this?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You need to use the Intent android.intent.action.NEW_OUTGOING_CALL in this intent you can get the extra Intent.EXTRA_PHONE_NUMBER which contains the outgoing number.

The intent is issued if a new outgoing call is intanciated.

You will need the Permission android.permission.PROCESS_OUTGOING_CALLS for this.

Hope that helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.