Application states in MeeGo 1.2 Harmattan
This article explains the two states of an application in MeeGo 1.2 Harmattan
Article Metadata
Compatibility
Platform(s): MeeGo 1.2 Harmattan
Article
Created: girishpadia
(18 Sep 2011)
Last edited: SeemaB
(24 Sep 2011)
Introduction
This article explains the two states of an application in MeeGo 1.2 Harmattan
Application states
If your MeeGo 1.2 Harmattan (known as Harmattan in developer community) application is running, It may be in the following two states.
| Application State | Description |
|---|---|
| Active State |
|
| Minimize State |
5. When applications detect a transition to the Minimized state they should free system resources to avoid being terminated by system in case of out of memory condition. |
The change in the either of the state occurs by the user interaction. The application's state transition can be detected by platformWindow.windowState.
For Example,
if (platformWindow.active)
// do something
else
// do something
More Information
The more details can be obtained from here

