Java tutorial
//package com.java2s; import android.app.Activity; import android.provider.Settings; public class Main { public static int getScreenBrightness(Activity activity) { int brightnessValue = 0; try { brightnessValue = Settings.System.getInt(activity.getContentResolver(), Settings.System.SCREEN_BRIGHTNESS); } catch (Exception e) { e.printStackTrace(); } return brightnessValue; } }