Register with Forum Nokia now and you'll enjoy the full benefits of the Forum Nokia membership.
Register LoginInnovation Series Videos highlighting Forum Nokia developers
Nokia releases new Qt developer offerings
Forum Nokia Developer Conference, India
Optimise your website for mobile devices with mobile web templates and layouts
Zoom and Rotate Gestures in FlashLite for touch-enabled devices
Jackson Feijó
Read more about Jackson on the Champions website.
Nokia Developer Days in South Africa
December 01, 2009
Johannesburg, South Africa
Forum Nokia Developer Conference ’09, India
December 07, 2009
Bangalore, India
LeWeb
December 09, 2009
Paris
Web Runtime Coding With Aptana WRT Plug-in
December 09, 2009
9am New York | 2pm London | 4pm Helsinki
Web Runtime Coding With Aptana WRT Plug-in
December 09, 2009
9:30am New Delhi, noon Beijing
![]() |
Avoid long-running frequent timers Frequently triggering timers may prevent the processor from entering the low-power sleep mode and increase power consumption significantly. In Symbian programming paradigms, asynchronous notification-based services are embraced instead of polling. |
![]() |
Lazy construction and use of resources only when needed Construct/load/open/initialize services just before they are needed and close/destruct objects right after use. In this way, unnecessary memory is not allocated and possible specific hardware components (like Bluetooth chip, cellular radio, HW accelerators) can be turned off by power management. |
![]() |
Screen saver and backlight Do not override backlight and screen saver settings because they work automatically according to user-set preferences. Monitor the screen saver status, key locks, and foreground/background events to detect whether the device is in active use. In special cases, overriding the settings is understandable (for example, in a navigation application). However, monitor the device status to check whether the prerequisites are still valid. For example:
|
![]() |
Implement idle time-outs for resources Close hardware resources automatically after a period of user inactivity so that resources are not left open if the user forgets to close them explicitly. |
![]() |
Consider carefully when to use fancy UI effects Animations and other similar user interface effects can be turned off when the device is locked or application is on the background. Various bells and whistles, like animations and UI transitions, look nice but they also consume energy, so at least provide an option for end users to turn them off if they do not add any value and are not necessary to perform a given task. |