I got my solution as following code
public class OutGoingCall extends BroadcastReceiver {
@Override
public void onReceive(final Context context, final Intent intent)
{
// get phone number from bundle
String phoneNumber = intent.getExtras().getString(OutGoingCall.INTENT_PHONE_NUMBER);
}
}