Is it possible to get notification whenever a call get terminated? Is there any Intent I can register a broadcast receiver for?
Asked
Active
Viewed 387 times
1 Answers
0
First, you may want register one of this intent's actions: ACTION_ANSWER
and/or ACTION_NEW_OUTGOING_CALL
. Then you will have to create and register a PhoneStateListener
and listen for TelephonyManager.CALL_STATE_IDLE
.
Take a look at this example: How do I get state of a outgoing call in android phone?