Android 中的自定义来电 GUI

发布于 2024-12-04 15:09:15 字数 267 浏览 0 评论 0原文

我试图开发一个应用程序,如果我的数据库中存在该号码,则该应用程序在来电时显示自定义 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酷到爆炸 2024-12-11 15:09:15

在您的广播接收器中的自定义 UI(活动)清单中添加意图过滤器标记

<intent-filter>
            <action android:name="android.intent.action.ANSWER" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>

,检查传入号码,如果存在,则打开您的活动。
请参阅链接

Add intent-filter tag in manifest of your custom UI(activity)

<intent-filter>
            <action android:name="android.intent.action.ANSWER" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>

in ur broadcast receiver check incoming number and if exist open your activity.
see the link.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文