Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.content.SharedPreferences;

public class Main {
    private static SharedPreferences sp = null;

    public static Boolean getBoolean(String key) {
        return Boolean.valueOf(sp.getBoolean(key, false));
    }

    public static Boolean getBoolean(String key, boolean defVal) {
        return Boolean.valueOf(sp.getBoolean(key, defVal));
    }
}