是否可以隐藏从应用程序拨打的号码?
我的应用程序中有一个人员列表,当用户点击其中一个列表项时,就会呼叫该人。 是否可以隐藏被叫号码,以便该人被呼叫,但该号码不会在 Android 拨号器应用程序和呼叫过程中显示?
I have a list of people in my app and when the user taps one of the list items, that person is called.
Is it possible to hide the called number, so the person would be called but the number would't show in android dialer application and during the calling?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不会。当您将 Intent 传递给 startActivity 或 startActivityForResult 时,另一个活动将拥有控制权,直到该活动退出。这是为了防止应用程序在用户不知情的情况下拨打 900 号码。
No. When you pass the Intent off to startActivity or startActivityForResult, the other activity has control until that activity exits. This is to prevent apps from making calls to 900 numbers without the user's knowledge.