Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/369.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何从C++/Qt Eskil Abrahamsen Blomfeldt在博客上有一篇文章,展示如何调用C++中的QtActudio/(Hangman)静态java方法。_Java_Android_C++_Qt_Qtandroidextras - Fatal编程技术网

如何从C++/Qt Eskil Abrahamsen Blomfeldt在博客上有一篇文章,展示如何调用C++中的QtActudio/(Hangman)静态java方法。

如何从C++/Qt Eskil Abrahamsen Blomfeldt在博客上有一篇文章,展示如何调用C++中的QtActudio/(Hangman)静态java方法。,java,android,c++,qt,qtandroidextras,Java,Android,C++,Qt,Qtandroidextras,他提到他只使用静态方法,因为这更容易(事实上),在他的示例中不需要更多。引述: 在我的游戏中,活动是单例的,因此我存储一个静态引用 到构造函数中的对象。(我的C++数据类有相同的 逻辑。我这样做是为了便于沟通 在java和C++代码之间使用静态方法。 例如,它还可以存储引用和指针 在每个C++和java对象中,将其映射到其等效的 其他语言,但这在本游戏中不是必需的。) 调用静态方法是可行的。调用非静态方法无效(从未输入函数)。如果我在onCreate()中调用非静态方法connectBlueto

他提到他只使用静态方法,因为这更容易(事实上),在他的示例中不需要更多。引述:

在我的游戏中,活动是单例的,因此我存储一个静态引用 到构造函数中的对象。(我的C++数据类有相同的 逻辑。我这样做是为了便于沟通 在java和C++代码之间使用静态方法。 例如,它还可以存储引用和指针 在每个C++和java对象中,将其映射到其等效的 其他语言,但这在本游戏中不是必需的。)

调用静态方法是可行的。调用非静态方法无效(从未输入函数)。如果我在onCreate()中调用非静态方法connectBluetooth(),它就会工作。是否有一种方法可以调用onCreate()中的非静态方法,而不使用该方法

编辑:

我想我会添加一些代码。我扩展了QtActivity类:

package org.qtproject.qt5.android.bindings;

import org.qtproject.qt5.android.bindings.QtApplication;
import org.qtproject.qt5.android.bindings.QtActivity;
import android.bluetooth.BluetoothAdapter;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import java.lang.String;

public class MyActivity extends QtActivity
{
    private BluetoothAdapter bluetoothAdapter;
    private static final int ENABLE_BLUETOOTH_REQUEST = 1;

        public MyActivity()
        {
            Log.d(QtApplication.QtTAG, "MyActivity constructor called");
        }

        @Override
        public void onCreate(Bundle savedInstanceState)
        {
            super.onCreate(savedInstanceState);
        }

        @Override
        public void onDestroy()
        {
            super.onDestroy();
        }

    @Override
        protected void onActivityResult(int requestCode, int resultCode, Intent data)
    {
                Log.d(QtApplication.QtTAG, "onActivityResult entered");
        if(requestCode == 1)
        {
            if(requestCode == 1)
            {
                if(resultCode == RESULT_OK)
                {
                                        Log.d(QtApplication.QtTAG, "User accepted to enable Bluetooth");
                }
                else if(resultCode == RESULT_CANCELED)
                {
                                        Log.d(QtApplication.QtTAG, "User declined to enable Bluetooth");
                }
            }
        }
    }

        public void connectBluetooth()
        {
            Log.d(QtApplication.QtTAG, "connectBluetooth() entered");
            bluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
            if(bluetoothAdapter == null)
            {
                Log.d(QtApplication.QtTAG, "Bluetooth adapter is not found");
                return;
            }

            if(!bluetoothAdapter.isEnabled())
            {
                Log.d(QtApplication.QtTAG, "Bluetooth is off");
                Intent enableBluetoothIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
                startActivityForResult(enableBluetoothIntent, ENABLE_BLUETOOTH_REQUEST);
            }
        }

        public static void test()
        {
            Log.d(QtApplication.QtTAG, "Static Test OK!");
        }
}

我尝试从C++类中调用这些方法:

#include "bluetooth.h"
#include <QtAndroidExtras>
#include <QDebug>

Bluetooth::Bluetooth(QObject *parent) :
    QObject(parent)
{
}

void Bluetooth::connect()
{
    //Test static call
    QAndroidJniObject::callStaticMethod<void>("org/qtproject/qt5/android/bindings/MyActivity", "test");


    //Test non-static call
    //Line below creates a new object and is a subclass of QtActivity.
    bluetooth = new QAndroidJniObject("org/qtproject/qt5/android/bindings/MyActivity");

    if(!bluetooth->isValid())
    {
        qDebug() << "bluetooth is an invalid java object";
        return;
    }

    bluetooth->callMethod<void>("connectBluetooth");
}
#包括“bluetooth.h”
#包括
#包括
蓝牙::蓝牙(QObject*父级):
QObject(父对象)
{
}
无效蓝牙::连接()
{
//测试静态调用
QAndroidJniObject::callStaticMethod(“org/qtproject/qt5/android/bindings/MyActivity”,“test”);
//测试非静态调用
//下面的行创建一个新对象,是QtActivity的子类。
蓝牙=新的QAndroidJniObject(“org/qtproject/qt5/android/bindings/MyActivity”);
如果(!bluetooth->isValid())
{
qDebug()调用方法(“连接蓝牙”);
}
编辑: 我最不确定的程序部分是AndroidManifest.xml。也许这里有什么东西可以解释这种行为

<?xml version='1.0' encoding='utf-8'?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" package="org.qtproject.example.AndroidTest" android:versionName="1.0" android:installLocation="auto">
    <application android:label="@string/app_name" android:name="org.qtproject.qt5.android.bindings.QtApplication">
        <activity android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|locale|fontScale|keyboard|keyboardHidden|navigation" android:label="@string/app_name" android:name="org.qtproject.qt5.android.bindings.MyActivity" android:screenOrientation="unspecified">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
            <meta-data android:value="AndroidTest" android:name="android.app.lib_name"/>
            <meta-data android:resource="@array/qt_sources" android:name="android.app.qt_sources_resource_id"/>
            <meta-data android:value="default" android:name="android.app.repository"/>
            <meta-data android:resource="@array/qt_libs" android:name="android.app.qt_libs_resource_id"/>
            <meta-data android:resource="@array/bundled_libs" android:name="android.app.bundled_libs_resource_id"/>
            <!-- Deploy Qt libs as part of package -->
            <meta-data android:value="1" android:name="android.app.bundle_local_qt_libs"/>
            <meta-data android:resource="@array/bundled_in_lib" android:name="android.app.bundled_in_lib_resource_id"/>
            <meta-data android:resource="@array/bundled_in_assets" android:name="android.app.bundled_in_assets_resource_id"/>
            <!-- Run with local libs -->
            <meta-data android:value="1" android:name="android.app.use_local_qt_libs"/>
            <meta-data android:value="/data/local/tmp/qt/" android:name="android.app.libs_prefix"/>
            <meta-data android:value="plugins/platforms/android/libqtforandroidGL.so:lib/libQt5QuickParticles.so" android:name="android.app.load_local_libs"/>
            <meta-data android:value="jar/QtAndroid.jar:jar/QtAndroidAccessibility.jar:jar/QtAndroid-bundled.jar:jar/QtAndroidAccessibility-bundled.jar" android:name="android.app.load_local_jars"/>
            <meta-data android:value="" android:name="android.app.static_init_classes"/>
            <!--  Messages maps -->
            <meta-data android:value="@string/ministro_not_found_msg" android:name="android.app.ministro_not_found_msg"/>
            <meta-data android:value="@string/ministro_needed_msg" android:name="android.app.ministro_needed_msg"/>
            <meta-data android:value="@string/fatal_error_msg" android:name="android.app.fatal_error_msg"/>
            <!--  Messages maps -->
            <!-- Splash screen -->
            <meta-data android:resource="@layout/splash" android:name="android.app.splash_screen"/>
            <!-- Splash screen -->
        </activity>
    </application>
    <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="19"/>
    <supports-screens android:smallScreens="true" android:anyDensity="true" android:largeScreens="true" android:normalScreens="true"/>
    <uses-permission android:name="android.permission.BLUETOOTH"/>
    <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
</manifest>

我仍然不能调用非静态函数,但一种解决方法是使用,它将类的实例化限制为一个对象,并调用能够调用非静态方法的静态函数

这是通过在构造函数中向自身添加类/对象引用来实现的:

private static MyActivity m_instance;

public MyActivity()
{
    m_instance = this;
}
现在可以在静态函数中调用非静态函数。例如,上面的非静态函数bluetoothConnect()现在可以重写为:

public static void connectBluetooth()
{
    Log.d(QtApplication.QtTAG, "connectBluetooth() entered");
    m_instance.bluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
    if(m_instance.bluetoothAdapter == null)
    {
        Log.d(QtApplication.QtTAG, "Bluetooth adapter is not found");
        return;
    }

    if(!m_instance.bluetoothAdapter.isEnabled())
    {
        Log.d(QtApplication.QtTAG, "Bluetooth is off");
        Intent enableBluetoothIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
        m_instance.startActivityForResult(enableBluetoothIntent, ENABLE_BLUETOOTH_REQUEST);
    }
    else
    {
        Log.d(QtApplication.QtTAG, "Bluetooth is on");
        m_instance.startDiscovery();
    }
}
这里唯一的区别是将static关键字添加到方法中,并在每次非静态方法调用之前添加“m_instance.”

此函数现在可以从C++调用为静态函数:

QAndroidJniObject::callStaticMethod<void>("org/qtproject/qt5/android/bindings/MyActivity", "connectBluetooth");
callStaticMethod(“org/qtproject/qt5/android/bindings/MyActivity”,“connectBluetooth”); 我想,由于这是一个单例,所以它的缺点是只能生成这个类的一个对象,但就我看来,它不会有太多限制


这只是一个解决方法,我仍然对如何调用非静态函数很感兴趣。这个答案不会被接受为接受的答案。< /P>查看下面的问题sasANCAD:这不是Qtand的XTRAS问题和答案。C++对象需要有一个<代码> Qand DROIDIDJNIONET/java >。在Qt占碑中有一个长指针。这两个指针必须同步,但需要额外的努力。@ LasZLopopp:C++对象确实有一个名为Bluetooth的QANDROIDJNIObject。但是调用这个对象上的非静态方法是不起作用的。奇怪,它对我来说很好。