Application:setKeepAwake

From GiderosMobile
Revision as of 10:00, 3 September 2018 by Hgy29 (talk | contribs)


Available since: Gideros 2011.6
Class: Application

Description


Controls the screen dimming and device sleeping of the device. When the application has no touches as user input for some period,
the system puts the device into a sleep state where the screen dims. However some applications have no input and controlled
by accelerometer or gyroscope only. For these kind applications, the screen should be kept awake by calling this function
with parameter true.

<ul>
<li>*Note:** This function has no effect on desktop.</li>
</ul>

 Application:setKeepAwake(keepAwake)

Parameters

keepAwake: (boolean) if true, screen is kept awake.

Examples

Example

application:setKeepAwake(true)	-- disable screen dimming and device sleeping
application:setKeepAwake(false)	-- enable screen dimming and device sleeping