Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.app.Activity;

public class Main {
    public static int getScreenBrightness(Activity activity) {
        int screenBrightness = 0;
        try {
            screenBrightness = android.provider.Settings.System.getInt(activity.getContentResolver(),
                    android.provider.Settings.System.SCREEN_BRIGHTNESS);
        } catch (Exception ex) {
        }
        return screenBrightness;
    }
}