QAndroidServiceConnection 类

包裹 Android ServiceConnection 类的最重要方法。 更多...

头: #include <QAndroidServiceConnection>
CMake: find_package(Qt6 COMPONENTS Core REQUIRED)
target_link_libraries(mytarget PRIVATE Qt6::Core)
qmake: QT += core
Since: Qt 6.2

该类在开发且可能改变。

公共函数

  QAndroidServiceConnection (const QJniObject & serviceConnection )
  QAndroidServiceConnection ()
QJniObject handle () const
virtual void onServiceConnected (const QString & name , const QAndroidBinder & serviceBinder ) = 0
virtual void onServiceDisconnected (const QString & name ) = 0

详细描述

The QAndroidServiceConnection is a convenience abstract class which wraps the AndroidServiceConnection 接口。

它很有用当履行 QtAndroidPrivate::bindService 操作。

成员函数文档编制

QAndroidServiceConnection:: QAndroidServiceConnection (const QJniObject & serviceConnection )

创建新的对象从现有 serviceConnection .

It's useful when you have your own Java implementation. Of course onServiceConnected ()/ onServiceDisconnected () will not be called anymore.

QAndroidServiceConnection:: QAndroidServiceConnection ()

创建新对象

QJniObject QAndroidServiceConnection:: handle () const

返回下划线 QJniObject

[pure virtual] void QAndroidServiceConnection:: onServiceConnected (const QString & name , const QAndroidBinder & serviceBinder )

This notification is called when the client managed to connect to the service. The name contains the server name, the serviceBinder is the binder that the client uses to perform IPC operations.

警告: This method is called from Binder's thread which is different from the thread that this object was created.

返回下划线 QJniObject

[pure virtual] void QAndroidServiceConnection:: onServiceDisconnected (const QString & name )

Called when a connection to the Service has been lost. The name parameter specifies which connectioen was lost.

警告: This method is called from Binder's thread which is different from the thread that this object was created.

返回下划线 QJniObject