iosxamarin.formscocossharp

Xamarin Forms Detect if Screen Active and/or Device Locked


I have a Xamarin Forms app that produces background audio and thus the app can run while the device is in lock mode and/or when the screen is not active (screen sleep).

I have a need to prevent screen updates while the Xamarin Forms MainPage (a ContentPage) is not visible and active. In other words, I need to detect is the screen is disabled (in sleep mode), if the device is locked, and also preferably when the MainPage is not currently active and visible.

Using Xamarin Forms, how can I detect if the screen is not active and/or if the device is in lock mode?


Additional Info


Solution

  • In your App.xaml.cs, you have the following methods:

    protected override void OnStart()
    {
        // Handle when your app starts
    }
    
    protected override void OnSleep()
    {
        // Handle when your app sleeps
    }
    
    protected override void OnResume()
    {
        // Handle when your app resumes
    }
    

    It sounds like you want stuff to happen when the app starts/resumes, but not when it sleeps (when the screen is inactive, or the app is in the background).