is screen Automatic Brightness - Android User Interface

Android examples for User Interface:Screen Brightness

Description

is screen Automatic Brightness

Demo Code


//package com.java2s;

import android.content.Context;

import android.provider.Settings;
import android.provider.Settings.SettingNotFoundException;

public class Main {

    public static boolean isAutomaticBrightness(Context context) {
        boolean automicBrightness = false;
        try {/*from   ww w .j a  v a  2  s. c o  m*/
            automicBrightness = Settings.System.getInt(
                    context.getContentResolver(),
                    Settings.System.SCREEN_BRIGHTNESS_MODE) == Settings.System.SCREEN_BRIGHTNESS_MODE_AUTOMATIC;
        } catch (SettingNotFoundException e) {
            e.printStackTrace();
        }
        return automicBrightness;
    }
}

Related Tutorials