Is it possible to get notification whenever a call get terminated?
Is there any Intent I can register a broadcast receiver for?
Is it possible to get notification whenever a call get terminated? Is there any
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
First, you may want register one of this intent’s actions:
ACTION_ANSWERand/orACTION_NEW_OUTGOING_CALL. Then you will have to create and register aPhoneStateListenerand listen forTelephonyManager.CALL_STATE_IDLE.Take a look at this example: How do I get state of a outgoing call in android phone?