如何得到Ubuntu UI Toolkit的版本
发布网友
发布时间:2022-04-26 08:30
我来回答
共1个回答
热心网友
时间:2022-06-25 20:16
方法一:
在手机中我们通过命令行的方法来寻找,比如:
通过上面的命令,我们可以看到在手机中有如下的文件目录存在:
[html] view plain copy
/usr/lib/arm-linux-gnueabihf/qt5/qml/Ubuntu/Components/1.3
表明"1.3"版本是在我们的手机中被支持的.
方法二
通过Ubuntu API的方法得到:
Main.qml
[html] view plain copy
import QtQuick 2.4
import Ubuntu.Components 1.3
MainView {
// objectName for functional testing purposes (autopilot-qt5)
objectName: "mainView"
// Note! applicationName needs to match the "name" field of the click manifest
applicationName: "ubuntutoolkitversion.liu-xiao-guo"
width: units.gu(60)
height: units.gu(85)
Page {
title: i18n.tr("ubuntutoolkitversion")
Column {
anchors.centerIn: parent
Label { text: "Toolkit ver: " + Ubuntu.toolkitVersion }
Label { text: "Major: " + Ubuntu.toolkitVersionMajor }
Label { text: "Minor: " + Ubuntu.toolkitVersionMinor }
Label { text: "Toolkit ver: " + Ubuntu.version(Ubuntu.toolkitVersionMajor,
Ubuntu.toolkitVersionMinor) }
}
}
}
就像API的描述一样,这个API是从Ubuntu.Components 1.2版本中开始支持的.运行该应用: