Xamarin Forms Detect if Screen Active and/or Device Locked
up vote
2
down vote
favorite
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
- I tried using Xamarin.Essentials and checking the ScreenLock.IsActive property. This did not work, as IsActive was always false even when the device was in lock mode. Tested on iOS device (iPhone).
- The reason why I need to prevent screen updates is because I am using CocosSharp and I am periodically placing CCParticle animations on the screen. When the screen is not active, new CCParticle animations can continue to be added, but the existing ones do not run to their set duration and thus never "expire." The result is an ever-increasing number of CCParticle animations on the (hidden) screen that continuously consume resources.
ios xamarin.forms cocossharp
add a comment |
up vote
2
down vote
favorite
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
- I tried using Xamarin.Essentials and checking the ScreenLock.IsActive property. This did not work, as IsActive was always false even when the device was in lock mode. Tested on iOS device (iPhone).
- The reason why I need to prevent screen updates is because I am using CocosSharp and I am periodically placing CCParticle animations on the screen. When the screen is not active, new CCParticle animations can continue to be added, but the existing ones do not run to their set duration and thus never "expire." The result is an ever-increasing number of CCParticle animations on the (hidden) screen that continuously consume resources.
ios xamarin.forms cocossharp
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
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
- I tried using Xamarin.Essentials and checking the ScreenLock.IsActive property. This did not work, as IsActive was always false even when the device was in lock mode. Tested on iOS device (iPhone).
- The reason why I need to prevent screen updates is because I am using CocosSharp and I am periodically placing CCParticle animations on the screen. When the screen is not active, new CCParticle animations can continue to be added, but the existing ones do not run to their set duration and thus never "expire." The result is an ever-increasing number of CCParticle animations on the (hidden) screen that continuously consume resources.
ios xamarin.forms cocossharp
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
- I tried using Xamarin.Essentials and checking the ScreenLock.IsActive property. This did not work, as IsActive was always false even when the device was in lock mode. Tested on iOS device (iPhone).
- The reason why I need to prevent screen updates is because I am using CocosSharp and I am periodically placing CCParticle animations on the screen. When the screen is not active, new CCParticle animations can continue to be added, but the existing ones do not run to their set duration and thus never "expire." The result is an ever-increasing number of CCParticle animations on the (hidden) screen that continuously consume resources.
ios xamarin.forms cocossharp
ios xamarin.forms cocossharp
asked Nov 11 at 16:49
robbpriestley
5201719
5201719
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
accepted
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).
Totally that's what I needed. It was right there in front of me the whole time. It's a pity the Xamarin documentation seems to be not very useful at times. I Googled the heck out of this.
– robbpriestley
Nov 26 at 20:11
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
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).
Totally that's what I needed. It was right there in front of me the whole time. It's a pity the Xamarin documentation seems to be not very useful at times. I Googled the heck out of this.
– robbpriestley
Nov 26 at 20:11
add a comment |
up vote
0
down vote
accepted
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).
Totally that's what I needed. It was right there in front of me the whole time. It's a pity the Xamarin documentation seems to be not very useful at times. I Googled the heck out of this.
– robbpriestley
Nov 26 at 20:11
add a comment |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
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).
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).
answered Nov 12 at 9:56
Tom
853512
853512
Totally that's what I needed. It was right there in front of me the whole time. It's a pity the Xamarin documentation seems to be not very useful at times. I Googled the heck out of this.
– robbpriestley
Nov 26 at 20:11
add a comment |
Totally that's what I needed. It was right there in front of me the whole time. It's a pity the Xamarin documentation seems to be not very useful at times. I Googled the heck out of this.
– robbpriestley
Nov 26 at 20:11
Totally that's what I needed. It was right there in front of me the whole time. It's a pity the Xamarin documentation seems to be not very useful at times. I Googled the heck out of this.
– robbpriestley
Nov 26 at 20:11
Totally that's what I needed. It was right there in front of me the whole time. It's a pity the Xamarin documentation seems to be not very useful at times. I Googled the heck out of this.
– robbpriestley
Nov 26 at 20:11
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53250966%2fxamarin-forms-detect-if-screen-active-and-or-device-locked%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown