拨打号码无提示
我正在尝试为 Android 平台编写一个函数,允许我在没有任何提示的情况下拨打 911。
我已经添加了权限android.permission.CALL_PRIVILEGED
。我只需要一个功能,只需按下选项菜单中的按钮即可拨打 911。
I'm trying to write a function for the Android platform that will allow me to call 911 without any sort of prompt.
I have already added the permission android.permission.CALL_PRIVILEGED
. I just need a function that will dial 911 at the press of a button in my options menu.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据API, ACTION_CALL 将执行您需要的操作,但不会执行紧急号码,而 ACTION_DIAL 将显示带有拨号盘的拨号器提示但允许拨打紧急号码。
恐怕没有办法做你想做的事,有充分的理由 - 防止误拨紧急服务。这是一项预防措施。
According to the API, ACTION_CALL will do what you need but not to emergency numbers, while ACTION_DIAL will display a dialer with the dial prompt but allows to call emergency numbers.
I'm afraid there is no way to do what you want, for a good reason - to prevent misdials to emergency services. It's a precautionary measure.