stop Activity Auto Brightness - Android Activity

Android examples for Activity:Activity Background

Description

stop Activity Auto Brightness

Demo Code


//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
}

Related Tutorials