2

Is it possible to get notification whenever a call get terminated? Is there any Intent I can register a broadcast receiver for?

Cristian
  • 198,401
  • 62
  • 356
  • 264
michael
  • 106,540
  • 116
  • 246
  • 346

1 Answers1

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?

Community
  • 1
  • 1
Cristian
  • 198,401
  • 62
  • 356
  • 264