如(rú)何判斷QML應用被推送到後台和(hé)前台
發表時間:2020-10-19
發布人:葵宇科技
浏覽次數:48
在這篇文(wén)┞仿中(zhōng),我們來介紹若何斷定一個(gè)QML應用被推到後台或前台。我們知道,在Ubuntu手機平台中(zhōng),它是一個(gè)蕩竽暌功用的操作體系。當一個(gè)應用被推到後台後,應用就被挂起,不克不及運行。我們有時須要這個(gè)标記來斷定我們的應用什麼時刻是在前台,什麼時刻是在後台。
我們用Ubuntu SDK創建一個(gè)簡單的QML應用:
import QtQuick 2.0 import Ubuntu.Components 1.1 /*! \brief MainView with a Label and Button elements. */ MainView { id: main // objectName for functional testing purposes (autopilot-qt5) objectName: "mainView" // Note! applicationName needs to match the "name" field of the click manifest applicationName: "com.ubuntu.developer.liu-xiao-guo.foregrounddetect" /* This property enables the application to change orientation when the device is rotated. The default is false. */ //automaticOrientation: true // Removes the old toolbar and enables new features of the new header. useDeprecatedToolbar: false width: units.gu(100) height: units.gu(75) Page { title: i18n.tr("ForegroundDetect") Connections { target: Qt.application onActiveChanged: { console.log("Qt.application.active: " + Qt.application.active); } } } }
在這裡,我們應用Qt.application這個(gè)變量的"active"屬性來斷定一個(gè)應用是否被推到後台或前台。我們運行應用結不雅如(rú)下(xià):
[img]http://img.blog.csdn.net/20150105110140359?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvVWJ1bnR1VG91Y2g=/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center
當我們在手機上把應用推到後台時,就會顯示false;當我們把應用推到前台時,就會顯示true。
全部應用的源碼在:bzr branch lp:~liu-xiao-guo/debiantrial/foregrounddetect