PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV Mobile 2024 → [WM22] Android: Prevent running code from pausing while screen turns off
[WM22] Android: Prevent running code from pausing while screen turns off
Débuté par Robert, 26 juil. 2018 17:48 - 3 réponses
Membre enregistré
105 messages
Posté le 26 juillet 2018 - 17:48
Hi everyone,

Can anyone point me in the right direction for this?
I have an android application a loop of code that can sometimes take a while to complete.
The problem is that if the user leaves the device sitting while this is happening, the screen will turn it's self off causing the loop to pause.

Is there a way I can either prevent the screen from turning off while this loop completes, or to allow the process to continue while the screen is asleep?

Preferably I'd like to be able to do this only for this procedure, so everything else pauses when the device sleeps per normal.

Thanks!
Membre enregistré
105 messages
Posté le 26 juillet 2018 - 22:55
Never mind. I figured out I can use ThreadExecute() to accomplish this.

Now to figure out why it's slowing down the longer it runs.
Posté le 27 juillet 2018 - 13:49
Hi Robert,

if you are adding stuff to a string in a loop, you may have the cause of
the slowing down

Best regards

--
Fabrice Harari
International WinDev, WebDev and WinDev mobile Consulting

Free Video Courses, free WXShowroom.com, open source WXReplication, open
source WXEDM.

More information on http://www.fabriceharari.com


On 7/26/2018 2:55 PM, Robert wrote:
Never mind. I figured out I can use ThreadExecute() to accomplish this.

Now to figure out why it's slowing down the longer it runs.
Membre enregistré
26 messages
Posté le 17 septembre 2018 - 18:21
Disable standby mode when running long procedure
SysStandby(sysBattery,sysStandbyInactive)

Enable standby mode
SysStandby(sysBattery, sysStandbyActive)