从您的应用程序发起的呼叫结束后如何再次显示您的应用程序?
我有一个应用程序,您可以通过它拨打一些电话号码。我成功检测到广播接收器的呼叫何时开始和结束。 通话结束后,将显示拨号器应用程序。 我希望我的应用程序在通话后显示(而不是拨号器应用程序)以显示一些警报、祝酒词……
我该如何执行此操作?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
监听呼叫结束的广播意图,然后当您的应用程序知道它开始呼叫时,使用给定的上下文以意图启动您的活动。
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.