如(rú)何判斷QML應用被推送到後台和(hé)前台 - 新聞資(zī)訊 - 雲南小程序開發|雲南軟件開發|雲南網站(zhàn)建設-西山區知普網絡科技工作室

159-8711-8523

雲南網建設/小程序開發/軟件開發

知識

不管是網站(zhàn),軟件還是小程序,都要直接或間接能為您産生價值,我們在追求其視覺表現的同時,更側重于功能的便捷,營銷的便利,運營的高效,讓網站(zhàn)成為營銷工具,讓軟件能切實提升企業(yè)内部管理水平和(hé)效率。優秀的程序為後期升級提供便捷的支持!

您當前位置>首頁 » 新聞資(zī)訊 » 技術(shù)分享 >

如(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

相關(guān)案例查看更多