如何直接从应用程序与Qt通话?

时间:2015-03-28 12:17:51

标签: android qt qml

我想在我的应用中实现拨号功能。实际上,它已经完成,但它的工作方式与我不想做的一样。按下按钮时,native dialer opens and waiting for pressing a button。是否可以直接呼叫而无需双击? 这是我的代码

Button {
        id: callButton
        anchors.centerIn: parent
        text: 'Make a call'
        onClicked: Qt.openUrlExternally('tel:+77051085322')
    }

2 个答案:

答案 0 :(得分:5)

而在iOS中,可以发出directly来电,同样不适用于Android。要解决此问题,您可以定义一个C ++类Wrapper来处理调用,具体取决于当前的操作系统。此类的实例注册为context property,并直接在QML中使用。

在课程中,您可以利用Android原生API,通过Intent操作ACTION_CALL提供自动拨号功能(但请记住there are some restrictions in using it)。通常在Android中你写:

Intent callIntent = new callIntent(Intent.ACTION_CALL);
callIntent.setPackage("com.android.phone");          // force native dialer  (Android < 5)
callIntent.setPackage("com.android.server.telecom"); // force native dialer  (Android >= 5)
callIntent.setData(Uri.parse("tel:" + number));
callIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(callIntent);

通过设置包,我们可以强制使用本机拨号程序。如果没有它,用户将会提示在可用的拨号器(即Skype,Viber等等)中明确选择,如果其他设备安装在该设备上。系统拨号程序包在Lollipop和之前的版本之间进行了更改,因此有必要在运行时检查SDK以设置正确的版本。


要在C ++中调用这些API,您需要Qt Android Extras,特别是QAndroidJniObject,还需要自定义Android清单中的相关权限。只需添加到.pro文件中:

android: QT += androidextras  #included only in Android builds

以及清单中的以下行:

<uses-permission android:name="android.permission.CALL_PHONE"/>

如果您没有定义自定义清单,只需添加一个。从Qt Creator 3.3开始,只需转到Projects > Build > Build Android APK > Create Templates即可生成自定义清单。


我们类的标题如下所示 - 缺少构造函数/解构函数:

#ifndef WRAPPER_H
#define WRAPPER_H
#include <QObject>
#include <QString>
#include <QDebug>
#if defined(Q_OS_IOS)
#include <QUrl>
#include <QDesktopServices>
#elif defined(Q_OS_ANDROID)
#include <QtAndroid>
#include <QAndroidJniObject>
#endif

#include <QDesktopServices>
#include <QUrl>

class Wrapper: public QObject
{
    Q_OBJECT
public:
    Q_INVOKABLE void directCall(QString number);
};

#endif // WRAPPER_H

相应的源文件如下所示 - 缺少构造函数/解构函数:

#include "wrapper.h"

void Wrapper::directCall(QString number)
{
#if defined(Q_OS_IOS)
    QDesktopServices::openUrl(QUrl(QString("tel://%1").arg(number)));
#elif defined(Q_OS_ANDROID)
    // get the Qt android activity
    QAndroidJniObject activity =  QAndroidJniObject::callStaticObjectMethod("org/qtproject/qt5/android/QtNative", "activity", "()Landroid/app/Activity;");
    //
    if (activity.isValid()){
    // real Java code to C++ code
    // Intent callIntent = new callIntent(Intent.ACTION_CALL);
    QAndroidJniObject callConstant = QAndroidJniObject::getStaticObjectField<jstring>("android/content/Intent", "ACTION_CALL");
    QAndroidJniObject callIntent("android/content/Intent",  "(Ljava/lang/String;)V", callConstant.object());
    // callIntent.setPackage("com.android.phone"); (<= 4.4w)  intent.setPackage("com.android.server.telecom");  (>= 5)
    QAndroidJniObject package;
    if(QtAndroid::androidSdkVersion() >= 21)
        package = QAndroidJniObject::fromString("com.android.server.telecom");
    else
        package = QAndroidJniObject::fromString("com.android.phone");
    callIntent.callObjectMethod("setPackage", "(Ljava/lang/String;)Landroid/content/Intent;", package.object<jstring>());
    // callIntent.setData(Uri.parse("tel:" + number));
    QAndroidJniObject jNumber = QAndroidJniObject::fromString(QString("tel:%1").arg(number));
    QAndroidJniObject uri = QAndroidJniObject::callStaticObjectMethod("android/net/Uri","parse","(Ljava/lang/String;)Landroid/net/Uri;", jNumber.object());
    callIntent.callObjectMethod("setData", "(Landroid/net/Uri;)Landroid/content/Intent;", uri.object<jobject>());
    // callIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    jint flag = QAndroidJniObject::getStaticField<jint>("android/content/Intent", "FLAG_ACTIVITY_NEW_TASK");
    callIntent.callObjectMethod("setFlags", "(I)Landroid/content/Intent;", flag);
    //startActivity(callIntent);
    activity.callMethod<void>("startActivity","(Landroid/content/Intent;)V", callIntent.object<jobject>());
}
    else
        qDebug() << "Something wrong with Qt activity...";
#else
    qDebug() << "Does nothing here...";
#endif
}

如开头所述,您可以将此类的实例包含为上下文属性。用于此目的的main如下所示:

#include <QApplication>
#include <QQmlContext>
#include <QQmlApplicationEngine>
#include "wrapper.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);

    QQmlApplicationEngine engine;
    Wrapper jw;
    engine.rootContext()->setContextProperty("caller", &jw);
    engine.load(QUrl(QStringLiteral("qrc:/main.qml")));      

    return app.exec();
}

最后在QML中你可以简单地写:

Button {
    id: callButton
    anchors.centerIn: parent
    text: 'Make a call'
    onClicked: caller.directCall("+0123456789")
}

可以轻松扩展代码以支持WinPhone,同时保持相同的QML接口(可能通过包含专用的头/源对)。最后,条件包含的使用保证了代码正确编译,即使使用的工具包在运行中发生了变化。

最后,我要补充一点,Google Play政策并不像Apple App Store政策那么严格。因此,由于使用ACTION_CALL而导致的应用拒绝不太可能发生。

答案 1 :(得分:1)

您需要获得许可

<uses-permission android:name="android.permission.CALL_PHONE" />

在你的AndroidManifest.xml

中 然后在java中

Intent dialIntent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:+1123123"));
startActivity(dialIntent);

等效的Qt代码类似于:

QAndroidJniObject action    = QAndroidJniObject::fromString("android.intent.action.CALL");
QAndroidJniObject uriString = QAndroidJniObject::fromString("tel:+1123123");
QAndroidJniObject uri       = QAndroidJniObject::callStaticObjectMethod("android/net/Uri", "parse", "(Ljava/lang/String)V", uriString);


QAndroidJniObject intent("android/content/Intent","(Ljava/lang/String, Landroid/net/Uri)V", action, uri);


QAndroidJniObject activity = QAndroidJniObject::callStaticObjectMethod("org/qtproject/qt5/android/QtNative", "activity", "()Landroid/app/Activity;");
activity.callObjectMethod("startActivity","(Landroid/content/Intent;)V",intent.object<jobject>());

然而,请注意,使用ACTION_CALL可能会让您拒绝appstore,谷歌建议使用ACTION_DIAL,这会打开拨号器而不是直接呼叫。