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: croozeus
(27 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 |
|
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

