如何通过 Android 上的应用程序拨打电话?

发布于 2024-12-05 13:39:41 字数 101 浏览 1 评论 0原文

我有一个 Android 应用程序,可以通过互联网或“VoIP”拨打电话。 因此,我需要电话 API 在用户拨号时将我的应用程序作为建议!

关于如何做到这一点有什么建议吗?

I have an Android application that can make calls via internet or " VoIP ".
So, I need the telephony API to put my application as a suggestion when a user dials-up a number !

any suggestions on how to do that ?!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

[浮城] 2024-12-12 13:39:41

您需要在拨号器活动的清单中注册一个意图过滤器:

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

You need to register an intent filter in the manifest for your dialer activity:

<intent-filter>
  <action android:name="android.intent.action.VIEW" />
  <action android:name="android.intent.action.DIAL" />
  <category android:name="android.intent.category.DEFAULT" />
</intent-filter>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文