<small id='gZYiu'></small><noframes id='gZYiu'>

    1. <i id='gZYiu'><tr id='gZYiu'><dt id='gZYiu'><q id='gZYiu'><span id='gZYiu'><b id='gZYiu'><form id='gZYiu'><ins id='gZYiu'></ins><ul id='gZYiu'></ul><sub id='gZYiu'></sub></form><legend id='gZYiu'></legend><bdo id='gZYiu'><pre id='gZYiu'><center id='gZYiu'></center></pre></bdo></b><th id='gZYiu'></th></span></q></dt></tr></i><div id='gZYiu'><tfoot id='gZYiu'></tfoot><dl id='gZYiu'><fieldset id='gZYiu'></fieldset></dl></div>

      <tfoot id='gZYiu'></tfoot>

        <bdo id='gZYiu'></bdo><ul id='gZYiu'></ul>
    2. <legend id='gZYiu'><style id='gZYiu'><dir id='gZYiu'><q id='gZYiu'></q></dir></style></legend>
    3. 在 Android 中拨打 911

      时间:2023-08-30
        <legend id='3Rtcj'><style id='3Rtcj'><dir id='3Rtcj'><q id='3Rtcj'></q></dir></style></legend>

            <small id='3Rtcj'></small><noframes id='3Rtcj'>

          • <i id='3Rtcj'><tr id='3Rtcj'><dt id='3Rtcj'><q id='3Rtcj'><span id='3Rtcj'><b id='3Rtcj'><form id='3Rtcj'><ins id='3Rtcj'></ins><ul id='3Rtcj'></ul><sub id='3Rtcj'></sub></form><legend id='3Rtcj'></legend><bdo id='3Rtcj'><pre id='3Rtcj'><center id='3Rtcj'></center></pre></bdo></b><th id='3Rtcj'></th></span></q></dt></tr></i><div id='3Rtcj'><tfoot id='3Rtcj'></tfoot><dl id='3Rtcj'><fieldset id='3Rtcj'></fieldset></dl></div>
              <tbody id='3Rtcj'></tbody>

            <tfoot id='3Rtcj'></tfoot>
                <bdo id='3Rtcj'></bdo><ul id='3Rtcj'></ul>
                本文介绍了在 Android 中拨打 911的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                我想使用 Android SDK 拨打紧急号码.

                I want to call Emergency number using Android SDK.

                我正在使用以下代码拨打号码 (911).此代码适用于除 911(紧急号码)以外的所有号码.当我使用 911 时,它会显示我不想要的拨号器屏幕.有什么程序可以在不打开拨号器的情况下拨打 911,或者我们可以阻止用户在拨号器屏幕中编辑号码吗?

                I am using following code to call the number (911). This code works fine for all the numbers except 911 (Emergency Number). When I use 911, then it shows the dialer screen that I don't want. Is there any procedure to call 911 without open the dialer or can we stop the user to edit the number in Dialer screen?

                Uri callUri = Uri.parse("tel://911");
                Intent callIntent = new Intent(Intent.ACTION_DIAL,callUri);
                callIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK|Intent.FLAG_ACTIVITY_NO_USER_ACTION);
                startActivity(callIntent);
                

                推荐答案

                提供的代码应该已经可以解决这个问题,但是您需要 CALL_PHONE 和 CALL_PRIVILEGED 权限才能在不显示拨号盘的情况下拨打紧急号码.

                The code provided should already work for this, but you need the CALL_PHONE and CALL_PRIVILEGED permission to dial emergency numbers without showing the dial-pad.

                Android 参考 - 清单权限 CALL_PRIVILEGED

                一旦添加到清单中,您应该能够使用相同的代码使用 ACTION_CALL 代替直接拨号:

                Once that is added to the manifest, you should be able to use the same code using the ACTION_CALL instead to direct dial:

                Uri callUri = Uri.parse("tel://911");
                Intent callIntent = new Intent(Intent.ACTION_CALL,callUri);
                callIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK|Intent.FLAG_ACTIVITY_NO_USER_ACTION);
                startActivity(callIntent);
                

                这篇关于在 Android 中拨打 911的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:如果有新版本可用,如何在 Android 应用程序中强 下一篇:Facebook 请求对话框:本机 iOS 应用程序中的无摩擦

                相关文章

                最新文章

              • <legend id='aVmHX'><style id='aVmHX'><dir id='aVmHX'><q id='aVmHX'></q></dir></style></legend>

                  <i id='aVmHX'><tr id='aVmHX'><dt id='aVmHX'><q id='aVmHX'><span id='aVmHX'><b id='aVmHX'><form id='aVmHX'><ins id='aVmHX'></ins><ul id='aVmHX'></ul><sub id='aVmHX'></sub></form><legend id='aVmHX'></legend><bdo id='aVmHX'><pre id='aVmHX'><center id='aVmHX'></center></pre></bdo></b><th id='aVmHX'></th></span></q></dt></tr></i><div id='aVmHX'><tfoot id='aVmHX'></tfoot><dl id='aVmHX'><fieldset id='aVmHX'></fieldset></dl></div>
                    <bdo id='aVmHX'></bdo><ul id='aVmHX'></ul>
                1. <small id='aVmHX'></small><noframes id='aVmHX'>

                  <tfoot id='aVmHX'></tfoot>