包裹 Android ServiceConnection 類的最重要方法。 更多...
| 頭: | #include <QAndroidServiceConnection> |
| qmake: | QT += androidextras |
| Since: | Qt 5.10 |
該類在 Qt 5.10 引入。
| QAndroidServiceConnection (const QAndroidJniObject & serviceConnection ) | |
| QAndroidServiceConnection () | |
| QAndroidJniObject | 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 Android ServiceConnection 接口。
它很有用當履行 QtAndroid::bindService 操作。
創建新的對象從現有 serviceConnection .
It's useful when you have your own Java implementation. Of course onServiceConnected ()/ onServiceDisconnected () will not be called anymore.
創建新對象
返迴下劃綫 QAndroidJniObject
[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.
警告: 從 Binder 綫程 (不同於創建此對象的綫程) 調用此方法。
返迴下劃綫 QAndroidJniObject
[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.
警告: 從 Binder 綫程 (不同於創建此對象的綫程) 調用此方法。
返迴下劃綫 QAndroidJniObject