Android examples for Phone:Screen
get Screen Brightness Mode State
//package com.java2s; import android.content.Context; import android.provider.Settings; public class Main { public static int getScreenBrightnessModeState(Context context) { return Settings.System.getInt(context.getContentResolver(), Settings.System.SCREEN_BRIGHTNESS_MODE, Settings.System.SCREEN_BRIGHTNESS_MODE_AUTOMATIC); }/*www . j av a 2 s. c om*/ }