onClicked: {
label.text = i18n.tr("..world!")
}
}
}
}
}
重新运行我们的应用:
我们显然可以看到,“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"
}
}
通过这样的方法,我们就可以得到全屏的应用了。