Setting screen brightness usually fails

Ben-Richard Ebbesvik 1 Reputation point
2021-04-30T17:12:27.33+00:00

My app contains a page with a QR code, which is going to be read by a QR code reader. The QR code reader is placed outdoor and the brightness of the phone screen needs to be set to the most brightest for the QR code reader to read the code easily in a sunny environment.

Setting the brightness is easy from the Xamarin.Forms project. I can easily make a service in Xamarion.IOS which sets UIScreen.MainScreen.Brightness = 1f; and then inject the service into my Xamarin.Forms project. This procedure is described here https://learn.microsoft.com/en-us/xamarin/xamarin-forms/app-fundamentals/dependency-service/introduction

But when the app goes to the background, the user turns down the brightness and then brings the app back into the foreground, the app should make the screen brighter again. I have tried to solve this in the Xamarin.IOS project, as Android and IOS have different lifecycles.

In the AppDelegate.cs in Xamarin.IOS:

public override void WillEnterForeground(UIApplication uiApplication)  
        {  
            base.WillEnterForeground(uiApplication);  
            UIScreen.MainScreen.Brightness = 1f;  
        }  

WillEnterForeground triggers every time the app is brought to the foreground. However, UIScreen.MainScreen.Brightness only sometimes get set. No exceptions are thrown. The app either turns up the brightness or it don't. Usually don't. I have tried in Xamarin.Forms 4.4, 4.5, 4.6 and 5.0 on a physical device (Iphone 6s).

Xamarin
Xamarin
A Microsoft open-source app platform for building Android and iOS apps with .NET and C#.
5,289 questions
{count} votes