天天看點

Qt for Android/iOS - Animated GIF(動态GIF圖檔)

使用QML Image可以顯示圖檔,那麼動态的GIF如何可以顯示成動的?

使用AnimatedImage:

AnimatedImage {
    width:45
    height:45
    source: "qrc:/img/loading.200x200.gif"
    anchors.centerIn: parent
}