<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[QtQuick -  Busy Indicator]]></title><description><![CDATA[<p dir="auto">Hi,</p>
<p dir="auto">we have a Qt5.4 with QtQuick running on a MIPS platform. We use QML application. We have busy indicator, when ever the data from network is yet to be received.</p>
<pre><code>BusyIndicator {
     id: loadingIconId
     objectName:"loadinglcon"
     x:500
     y:300
     visible: false
 }
</code></pre>
<p dir="auto">But it gets jerky when there is some activities.<br />
As there is network activity, as well as some other activities going on, we thought UI ‍thread might get stuck / busy processing the events and hence we wanted to move to Render thread and hence we used Animator. (</p>
<pre><code>Image{
       id: loadingIconId
       objectName: "loadinglcon";
       x: 875;
       y: 340;
       height: 100
       width: 100
       visible: showHideIndicator;
       source:"../images/busyindicator.png"
       RotationAnimator {
               target: loadingImageCustom
               from: 0;
               to: 360;
               duration: 500
               loops: Animation.Infinite
               running: showHideIndicator
           }
   }
</code></pre>
<p dir="auto">But we are still seeing the same issue. Any suggestions?<br />
Is there any thing that is causing issues in scenegraph rendering? How can we investigate?</p>
<p dir="auto">We need to run the Loading-Icon till all the data has been received/loaded.</p>
<p dir="auto">Thanks</p>
]]></description><link>https://forum.qt.io/topic/96518/qtquick-busy-indicator</link><generator>RSS for Node</generator><lastBuildDate>Sat, 18 Apr 2026 16:51:11 GMT</lastBuildDate><atom:link href="https://forum.qt.io/topic/96518.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 12 Nov 2018 06:06:48 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to QtQuick -  Busy Indicator on Mon, 12 Nov 2018 06:45:45 GMT]]></title><description><![CDATA[<p dir="auto">Jerk indicates the still UI thread is busy processing. Just a suggestion. How about moving the processing the data itself to different thread  &amp; communicate using the signal/slots across threads ?</p>
]]></description><link>https://forum.qt.io/post/492576</link><guid isPermaLink="true">https://forum.qt.io/post/492576</guid><dc:creator><![CDATA[dheerendra]]></dc:creator><pubDate>Mon, 12 Nov 2018 06:45:45 GMT</pubDate></item></channel></rss>