gpt4 book ai didi

android - 如何直接从应用程序调用 Qt?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:36:59 27 4
gpt4 key购买 nike

我想在我的应用程序中实现拨号器功能。实际上,它已经完成了,但是它以我不希望的方式工作。按下按钮时,native dialer opens and waiting for pressing a button .不双击可以直接调用吗? 这是我的代码:

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

最佳答案

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

在类中,您可以利用 Android native API,这些 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);

通过设置包,我们可以强制使用 native 拨号器。如果没有它,用户将被提示选择可用的拨号器(即 Skype、Viber 等)清楚地知道该设备上是否安装了其他拨号器。系统拨号程序包在 Lollipop 和之前的版本之间发生了变化,因此有必要在运行时检查 SDK 以设置正确的。


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

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

以及 list 中的下一行:

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

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


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

#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 接口(interface)(可能通过包含专用 header /源对)。最后,条件包含的使用保证了代码正确编译,即使使用的工具包在运行中被更改。

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

关于android - 如何直接从应用程序调用 Qt?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29317048/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com