vote up 1 vote down star
2

Hi,

I am developing an application where one of the things we need is to control the outgoing call, at least to be able to stop it from our application.

For now I tried using Intent.ACTION_CALL to use existing activity:

Intent callIntent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + phoneNumber)); 
startActivity(callIntent);

But stopping the call seems to be disallowed by default API.

Can you suggest some workaround?

For example, enabling airplane mode during the call :) Just an example, this hack didn't work for me. :)

Thanks a lot!

Tilek

flag

3 Answers

vote up 1 vote down

Considering the potential for wonderful mischief I would be surprised if this is allowed.

This thread says flatly that the API cannot end a call. Others have tried.

link|flag
Then how they did it in [tCallBlocking Lite](taosoftware.co.jp/en/android/…)? – an0 Aug 3 at 15:36
vote up 1 vote down

1) Create a BroadcastReceiver with a priority of 0. 2) In the BC intercept the ACTION_NEW_OUTGOING_CALL intent in its OnReceive method 3) call setResultData(null) in the same method

This will prevent the call from initiating (as long as your receiver is the last to process the intent I think)

link|flag
vote up 0 vote down

Hi can get an example on how to set a number for dialing automaticaly via API- is there such option at all

link|flag

Your Answer

Get an OpenID
or

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