Android examples for User Interface:Screen Brightness
stop Screen Auto Brightness
//package com.java2s; import android.content.Context; import android.provider.Settings; public class Main { public static void stopAutoBrightness(Context context) { Settings.System.putInt(context.getContentResolver(), Settings.System.SCREEN_BRIGHTNESS_MODE, Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL); }/*from www. java 2 s. co m*/ }