I\'m attempting to change the screen brightness from withing a service, like so:
android.provider.Settings.System.putInt(getContentResolver(), android.provid
You might have to do it through the Window object.
Window
For example,
WindowManager.LayoutParams lp = getWindow().getAttributes(); lp.screenBrightness= lp.screenBrightness*1.25; getWindow().setAttributes(lp);