Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: GNU General Public License 

import android.content.Context;
import android.content.SharedPreferences;

public class Main {
    public static Boolean isNightMode(Context context) {
        Boolean result = false;

        try {
            SharedPreferences settings = context.getSharedPreferences("Settings", Context.MODE_PRIVATE);
            result = settings.getBoolean("night_mode", false);
        } catch (Exception e) {
            e.printStackTrace();
        }

        return result;
    }
}