Android examples for User Interface:Screen Brightness
is Screen Brightness Mode Auto
//package com.java2s; import android.content.Context; import android.provider.Settings; public class Main { public static boolean isScreenBrightnessModeAuto(Context context) { return getScreenBrightnessModeState(context) == Settings.System.SCREEN_BRIGHTNESS_MODE_AUTOMATIC ? true : false;// w w w . ja v a 2 s. c o m } public static int getScreenBrightnessModeState(Context context) { return Settings.System.getInt(context.getContentResolver(), Settings.System.SCREEN_BRIGHTNESS_MODE, Settings.System.SCREEN_BRIGHTNESS_MODE_AUTOMATIC); } }