Android 中的自定义来电 GUI
我试图开发一个应用程序,如果我的数据库中存在该号码,则该应用程序在来电时显示自定义 GUI。工作正常。但有时它会在我的自定义 GUI 上显示手机默认传入 GUI。 检查数据库时可能需要一些时间,同时它会显示手机默认 GUI。 是否可以等待/隐藏/从不显示来电的默认 GUI?
还有一个问题是,一旦我的 Activity 位于前台,并且想要在来电时启动我的 Activity,并且弹出包含接受/拒绝 GUI 的镜头。因为 Activity 位于前台,所以不会第二次创建它,不会显示弹出(接受/拒绝)GUI。
I was trying to develop an application that show custom GUI on incoming call if that number exist in my database. It works ok. But some time it show up phone default Incoming GUI on my custom GUI..
It might be take some time while checking in database meanwhile it shows phone default GUI.
Is it possible to wait/hide/never show default GUI of incoming call ?.
One more problem is once my activity is in foreground and want start the my activity on incoming call and shot popup contain accept/reject GUI. because activity is in foreground it is not created second time it doesn't shown popup(accept/reject) GUI.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的广播接收器中的自定义 UI(活动)清单中添加意图过滤器标记
,检查传入号码,如果存在,则打开您的活动。
请参阅链接。
Add intent-filter tag in manifest of your custom UI(activity)
in ur broadcast receiver check incoming number and if exist open your activity.
see the link.