Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hi all,
How can I know that my application minimized to the background on N950? I tried @Page{ onStatusChanged:{ console.log("status changed) } }@
but without any result , I always got bq. Meego graphics system destroyed
may be you need this
http://harmattan-dev.nokia.com/docs/library/html/guide/html/Developer_Library_Essential_concepts_for_Harmattan_developers_Application_fundamentals_Application_lifecycle.html
I solved it. I made a timer and check if the application is active or not through this property Qt.application.active
Using a timed event instead of a signal/slot connection is more cpu heavy.
@Connections { target: platformWindow onActiveChanged: {
if (platformWindow.active) { //App became active } else { //App became inactive } } }@
Or you may simply use data binding since platformWindow.active is a boolean.