Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My application blocks unwanted calls and accidentally it can prevent an emergency service to call back.

To solve this much critical issue I should be able to detect outgoing emergency call immediately when it just dialed and stop my call blocking activities instantly. Yes, actually I can detect outgoing call listening to phone off-hook events, but I can check if it was an emergency call only after it recorded in the CallLog. This helps a bit, but doesn't solve the issue.

Perhaps, not only a telephony application would be safer if it can detect an emergency call and suspend it's activities. We have "onLowMemory ()", why not to have "onEmergencyCall()".

Would appreciate any advice to help this problem.

share|improve this question

2 Answers

The NEW_OUTGOING_CALL event has an extra called PHONE_NUMBER that holds the outgoing number.

share|improve this answer
+1 for answering his question without him really noticing... :) – JimR Dec 4 '10 at 23:16

Blrfl, thank you very much. I've found the answer yesterday. Little addition: there should be separate broadcast receiver to get correspondent intent. Anyway, it's pleasure to know there are people around and they can help :)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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