Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can we turn automatic brightness off in android?

Tags:

android

How can we turn automatic brightness off in android?

like image 420
shripal Avatar asked Oct 30 '10 05:10

shripal


People also ask

How do I stop my phone from automatically turning the brightness up?

Navigate to Settings, and then tap Display. Tap the switch next to Adaptive brightness to turn the setting off.


1 Answers

Settings.System.putInt(getContentResolver(), 
    Settings.System.SCREEN_BRIGHTNESS_MODE, Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL);
like image 176
Dusty Avatar answered Sep 26 '22 23:09

Dusty