Java tutorial
//package com.java2s; import android.app.Activity; import android.view.WindowManager; public class Main { public static void changeBrightness(Activity activity, float brightness) { WindowManager.LayoutParams layout = activity.getWindow().getAttributes(); layout.screenBrightness = brightness; //1F; activity.getWindow().setAttributes(layout); } }