1.添加qrc,将gif添加到当前资源目录下
2.qml代码如下所示
import QtQuick
import QtQuick.Window
Window {
width: 500
height: 500
visible: true
title: qsTr("Hello World")
AnimatedImage{
id:hud
anchors.fill: parent
source: "图片名字.gif"
}
}
将图片名字改为对应gif图片名就行。