如何从后台服务拨打电话?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何从后台服务拨打电话?相关的知识,希望对你有一定的参考价值。

我是新来的android请帮忙。 我试过用这个代码......

Intent intent = new Intent(Intent.ACTION_CALL);
intent.setData(Uri.parse("tel:" + number));
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addFlags(Intent.FLAG_FROM_BACKGROUND);
startActivity(intent);

没有用:它突然停了下来。 我提到了必要的权限

答案

请尝试下面的代码。

        new Handler().post(new Runnable() {
            @Override
            public void run() {
Intent intent = new Intent(Intent.ACTION_CALL);
intent.setData(Uri.parse("tel:" + number));
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addFlags(Intent.FLAG_FROM_BACKGROUND);
context.startActivity(intent);
            }
        });

您将从服务qazxsw poi方法获得上下文。在qazxsw poi的地方,可以使用qazxsw poi

以上是关于如何从后台服务拨打电话?的主要内容,如果未能解决你的问题,请参考以下文章

在拨打电话时获取用户的位置

如何从 Flutter 应用程序拨打电话

如何从 Siri Intent Extension 拨打网络电话?

如何使用 openURL 在 Swift 中拨打电话?

OpenHarmony如何拨打电话

OpenHarmony如何拨打电话