4

I am Intercepting outgoing call following is my code of outgoing call interception

public class InterceptCall extends BroadcastReceiver {

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

        String calling_number = intent.getStringExtra(Intent.EXTRA_PHONE_NUMBER);
                setResultData("123,"+calling_number );
}
}

in android , is used for pause, but it is not working? how can I send DTMF input or use pause, wait and symbol? I am stuck in it any help will be appreciated

ARDaniyal
  • 159
  • 3
  • 10

1 Answers1

3

Use p or w, not comma

pmctiernan
  • 46
  • 1
  • 3