Reputation: 8035
I have an app where you can call some phone numbers from it. I successfully detected when a call starts and finishes with broadcast receiver. When the call finishes, a dialer app is shown. I want my app to show after a call (not the dialer app) to display some alerts, toasts, ...
How can I do this?
Upvotes: 0
Views: 95
Reputation: 9189
Listen for the call ended broacast intent then when your application knows it started the call start your Activity with an Intent using the given Context.
Upvotes: 1