Android examples for Activity:Activity Background
start Activity Auto Brightness
//package com.java2s; import android.app.Activity; import android.provider.Settings; public class Main { public static void startAutoBrightness(Activity activity) { Settings.System.putInt(activity.getContentResolver(), Settings.System.SCREEN_BRIGHTNESS_MODE, Settings.System.SCREEN_BRIGHTNESS_MODE_AUTOMATIC); }//from w w w .j a v a2 s. com }