Android examples for Activity:Activity Background
stop Activity Auto Brightness
//package com.java2s; import android.app.Activity; import android.provider.Settings; public class Main { public static void stopAutoBrightness(Activity activity) { Settings.System.putInt(activity.getContentResolver(), Settings.System.SCREEN_BRIGHTNESS_MODE, Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL); }//from w ww . j av a 2s .c o m }