盛世清平~Qt quick学习笔记_04

加载网络图片


 Rectangle{
         width:480;
         height:320;
         color:"#121212";
         BusyIndicator{
             id:busy;
             running:true;
             anchors.centerIn: parent;
             z:2;
         }
         Text{
             id:stateLabel;
             visible: false;
             anchors.centerIn: parent;
             z:3;
         }
         Image{
             id:imageViewer;
             asynchronous: true;//只有想要异步加载本地资源时才需要设置它
             cache:false;//告诉Image不用缓存图片
             anchors.fill: parent;
             fillMode:Image.PreserveAspectFit;//等比缩放模式
             //信号处理器,Image的status属性变化时会发射satusChanged()信号
             onStatusChanged: {
                 if(imageViewer.states ===Image.Loading){
                     busy.running = true;
                     stateLabel.visible = false;
                 }
                 else if(imageViewer.status === Image.Ready){
                     busy.running = false;
                 }
                 else if(imageViewer.status === Image.Error){
                     busy.running = false;
                     stateLabel.visible = true;
                     stateLabel.text = "ERROR";
                 }
             }
         }
         Component.onCompleted: {
             imageViewer.source =
                     "http://pic4.nipic.com/20091217/3885730_124701000519_2.jpg";

BusyIndicator
用来显示一个等待图元,耗时操作,缓解用户的焦躁情绪

一个转圈圈的动画

 BusyIndicator{
        id:busy;
        running:true;
        anchors.centerIn: parent;
        z:2;
    }

 BusyIndicator{
        id:busy;
        running:true;
        anchors.centerIn: parent;
        z:2;
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值