qml加载开机白屏易死机的解决方案
Posted yantuguiguziPGJ
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了qml加载开机白屏易死机的解决方案相关的知识,希望对你有一定的参考价值。
1 参考链接
qt - Rectangle element is not displayed - Stack Overflow
(122条消息) qml在开发板上启动时,出现白屏(qml的两种加载方式)_xi__q的专栏-CSDN博客
(122条消息) 关于 qml从ubuntu开发迁移到目标机(定制ubuntu)上stackview无法显示(显示白屏) 的解决方法_长沙红胖子网络科技(原名:红模仿的小作坊)-CSDN博客
2 最佳实践
main.cpp
#include <QGuiApplication>
#include <QQuickView>
int main(int argc, char *argv[])
{
QGuiApplication app(argc, argv);
QQuickView engine(QUrl(QStringLiteral("qrc:/main.qml")));
engine.show();
return app.exec();
}
main.qml
import QtQuick 2.0
Rectangle {
width: 100
height: 100
color: "red"
}
以上是关于qml加载开机白屏易死机的解决方案的主要内容,如果未能解决你的问题,请参考以下文章