如何在Ubuntu手机中使得一个应用是全屏的应用(2)

onClicked: {
                    label.text = i18n.tr("..world!")
                }
            }
        }
    }
}

重新运行我们的应用:

如何在Ubuntu手机中使得一个应用是全屏的应用

如何在Ubuntu手机中使得一个应用是全屏的应用

我们显然可以看到,“title”区域不见了。应用所占用的区间更大了。

不想使用PageStack的应用来说,我们也不必使用Page。我们可以直接使用如下的方法直接占用整个有效的屏幕区域: 

import QtQuick 2.0
import Ubuntu.Components 1.1

/*!
    \brief MainView with a Label and Button elements.
*/

MainView {
    // objectName for functional testing purposes (autopilot-qt5)
    objectName: "mainView"

// Note! applicationName needs to match the "name" field of the click manifest
    applicationName: "fullscreen.ubuntu"

/*
    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(50)
    height: units.gu(75)

Rectangle {
        anchors.fill: parent
        color: "red"
    }

}

如何在Ubuntu手机中使得一个应用是全屏的应用

如何在Ubuntu手机中使得一个应用是全屏的应用

通过这样的方法,我们就可以得到全屏的应用了。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/0f31263deeaaf4444070665410326f35.html