不使用 UI 进行调用

发布于 2024-11-16 21:01:36 字数 350 浏览 4 评论 0原文

有没有一种方法可以在不显示允许用户发起呼叫的 UI 的情况下呼叫联系人?因此,当我单击按钮时,会立即拨打联系号码,就像当我查看手机中的最后一个通话时,单击某人,会立即拨打他们的电话。

我现在使用的代码是:

try {
   Intent intent = new Intent(Intent.CALL_ACTION);
   intent.setData(Uri.parse("tel:" + number));
   startActivity(intent);
} catch (Exception e) {
   Log.e("SampleApp", "Failed to invoke call", e);
}

Is there a way to call a contact without showing a UI that allows the user to initiate a call? So when I click on a button, the contact number is immediately dialed like when I go to the last calls in my phone an click on someone, they are immediately called.

The code I am using right now is:

try {
   Intent intent = new Intent(Intent.CALL_ACTION);
   intent.setData(Uri.parse("tel:" + number));
   startActivity(intent);
} catch (Exception e) {
   Log.e("SampleApp", "Failed to invoke call", e);
}

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

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

发布评论

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

评论(4

jJeQQOZ5 2024-11-23 21:01:36

将权限 android.permission.CALL_PHONE 添加到清单中,并将 Intent.CALL_ACTION 更改为 Intent.ACTION_CALL

Add a permission android.permission.CALL_PHONE to the manifest and change Intent.CALL_ACTION to Intent.ACTION_CALL

一口甜 2024-11-23 21:01:36

您发布的代码不应该工作...
没有 CALL_ACTION,请使用 ACTION_CALL 代替。

Code you are posted should not work...
there is no CALL_ACTION, use ACTION_CALL instead.

飘过的浮云 2024-11-23 21:01:36
private void call() {    
    try {    
        Intent callIntent = new Intent(Intent.ACTION_CALL);    
        callIntent.setData(Uri.parse("tel:123456789"));    
        startActivity(callIntent);    
    } catch (ActivityNotFoundException e)        {    
         Log.e("helloandroid dialing example", "Call failed", e);    
    }

AndroidManifest.xml

  <uses-permission android:name="android.permission.CALL_PHONE"></uses-permission>
private void call() {    
    try {    
        Intent callIntent = new Intent(Intent.ACTION_CALL);    
        callIntent.setData(Uri.parse("tel:123456789"));    
        startActivity(callIntent);    
    } catch (ActivityNotFoundException e)        {    
         Log.e("helloandroid dialing example", "Call failed", e);    
    }

AndroidManifest.xml

  <uses-permission android:name="android.permission.CALL_PHONE"></uses-permission>
青丝拂面 2024-11-23 21:01:36
Intent intent = new Intent(Intent.CALL_ACTION);

应该是

  Intent intent = new Intent(Intent.ACTION_CALL);

这是我的完整代码:

    Intent intentcall = new Intent();
    intentcall.setAction(Intent.ACTION_CALL);
    intentcall.setData(Uri.parse("tel:" + phoneNumber)); 
    startActivity(intentcall);
Intent intent = new Intent(Intent.CALL_ACTION);

should be

  Intent intent = new Intent(Intent.ACTION_CALL);

This is my complete code:

    Intent intentcall = new Intent();
    intentcall.setAction(Intent.ACTION_CALL);
    intentcall.setData(Uri.parse("tel:" + phoneNumber)); 
    startActivity(intentcall);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文