vote up 6 vote down star

Hi guys, I'm trying to programmatically reject a call on a BlackBerry, with Java + JDE. I'm intercepting the callIncoming event, and in there I need to do something to reject a call from a specific number.

Does anyone know how to do that? Thanks.

flag
2  
Oh dear. Mad ex-wife? – IainMH Nov 20 '08 at 13:06
no :) just an app that interprets calls from a specific number as a way to make the phone do something. So, it is not a "real call" that the user should answer. The app should reject it, and do something... – Bryan Roth Nov 20 '08 at 13:43
I would love to have an easy block for 'my second and last call' or 'free minutes to India' since I know the numbers they use (area codes anyway) but still answer them 1 in 4 times. – Larry.Smithmier Nov 22 '08 at 17:21
I would think that there wouldn't be a way to programmatically do this since it could be abused rather easily. – toast Nov 24 '08 at 16:22
It could also be useful for a few things. Like if you are sending some important data, and you aren't on a 3G network. Incoming calls suspend all other data service activities. – Noctrine Jul 6 at 19:39

3 Answers

vote up 2 vote down

I couldn't find an API for directly rejecting the call in progress. However, you could explore a hack where you inject a keypress of the Hangup/Disconnect button (see EventInjector).

As to determining the phone number, you could use Phone.getCall(callId).getDisplayPhoneNumber() or Phone.getActiveCall().getDisplayPhoneNumber().

link|flag
Sounds like a "good" hack :) Just curious - don't do Blackberry since I develop on WM - but, do you have to make sure you send the "hangup-button" to the correct window, and does this not matteR? – Israr Khan Nov 22 '08 at 8:59
vote up 0 vote down

There is no other way than the EventInjector. The "security" layout of the BlackBerry API does not allow to hang up / reject a call. We tried to find a solution for this issue for 2 years.

link|flag
vote up 0 vote down

Using the incoming call listener, and notification APIs you can reject a call programmatically.

There is a topic discussing it on the blackberry developer forums, you can find it here

link|flag

Your Answer

Get an OpenID
or

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