Hallo,
mit dem nachfolgenden Code möchte ih verhindern, das der Bildschirm bzw. das Handy im Ruhemodus geht. Leider funktioniert das nicht. Der bildschirm geht aus und bleibt nicht an. Was ist verkehrt an meiner Routine? Danke für euere Hilfe im Voraus.
In english:
Hello,
with the following code would prevent ih, which goes to the screen or the phone in standby mode. Unfortunately, this does not work. The screen goes out and not to remain. What is wrong with my routine? Thanks for your help in advance.
Cu
Amalkotey
mit dem nachfolgenden Code möchte ih verhindern, das der Bildschirm bzw. das Handy im Ruhemodus geht. Leider funktioniert das nicht. Der bildschirm geht aus und bleibt nicht an. Was ist verkehrt an meiner Routine? Danke für euere Hilfe im Voraus.
In english:
Hello,
with the following code would prevent ih, which goes to the screen or the phone in standby mode. Unfortunately, this does not work. The screen goes out and not to remain. What is wrong with my routine? Thanks for your help in advance.
Cu
Amalkotey
B4X:
Sub imgWidget_Click
Dim pws As PhoneWakeState
Status = (Status + 1) Mod imgFiles.Length
rv.SetImage("imgWidget", LoadBitmap(File.DirAssets, imgFiles(Status)))
If Status = 1 Then
pws.KeepAlive(True) ' display stays on
Else
pws.ReleaseKeepAlive ' display stays off
End If
rv.UpdateWidget ' Update widget
End Sub