How to keep the display on during audio/video playback

How to keep the display on during audio/video playback 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Create this variable at a global scope. Set it to null.
private DisplayRequest dispRequest = null;
 
public void StartVideoPlayback()
{
    if (dispRequest == null)
    {
        // Activate a display-required request. If successful, the screen is
        // guaranteed not to turn off automatically due to user inactivity.
        dispRequest = new DisplayRequest();
        dispRequest.RequestActive();
         
        rootPage.NotifyUser("Display request activated",
                        NotifyType.StatusMessage);
         
        // Insert your own code here to start the video.
     }
}
 
public void StopVideoPlayback()
{
    // Insert your own code here to stop the video.
    if (dispRequest != null)
    {
        // Deactivate the display request and set the var to null.
        dispRequest.RequestRelease();
        dispRequest = null;
         
        rootPage.NotifyUser("Display request released",
                            NotifyType.StatusMessage);
    }
}

Quelle

Kommentare sind geschlossen

Tags