DixieFlatline
DixieFlatline

Reputation: 8035

How to show your app again after a call started from your app finishes?

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

Answers (1)

Dan S
Dan S

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

Related Questions