我们在QML应用中有时需要调用系统设置(system settings)来完成我们的一些设置。比如,我们在使用GPS来定位时,可能GPS并没有打开,如果在我们的应用中直接打开系统中的GPS设置页面,这样我们就可以直接打开系统的GPS而不用单独设计一个页面。我们可以通过使用URL dispatcher的方法来打开另外一个应用。在先前的我们的文章中,我们已经讲述了很多关于URL dispatcher方面的东西:
关于系统设置(system-settings)的源码,我们可以在地址找到。
如何查看系统的url dispatcher
通常情况下,我们可能很想知道系统中到底有那些的URL dispatcher。我们可以通过如下的命名来查看我们的手机系统的URL dispatcher:
上面列举了我们手机系统中已经有的URL dispatcher。比如我们可以查看system-settings的url dispatcher的protocol:
[ { "protocol": "settings" } ]
这样我们在我们的QML应用中使用如下的方法来启动系统设置中的页面:
Qt.openUrlExternally("settings:///system/about");
上面的方法就可以打开系统设置中的“关于”页面。
基于上面的理解,我设计了如下的例程来启动系统设置中的不同的页面:
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: "urldispatcher.liu-xiao-guo" /* 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(60) height: units.gu(85) property var plugins: ["about", "phone", "battery", "bluetooth", "brightness", "cellular", "language", "background", "flight-mode", "notifications", "orientation-lock", "reset", "security-privacy", "sound", "system-update", "time-date", "wifi"] Page { title: i18n.tr("urldispatcher") Flickable { clip: true width: parent.width height: parent.height contentHeight: content.childrenRect.height Column { id: content anchors.centerIn: parent spacing: units.gu(1) Repeater { model: plugins delegate: Button { text: modelData onClicked: { Qt.openUrlExternally("settings:///system/" + modelData); } } } } } } }
运行我们的应用:
应用的源码在: git clone https://gitcafe.com/ubuntu/urldispatcher.git
版权声明:本文为博主原创文章,未经博主允许不得转载。
时间: 2024-11-04 17:27:07