Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

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

public class Main {
    private static Context context;

    public static boolean getPreferenceBoolean(String key, boolean defaultVal) {
        SharedPreferences prefs = context.getSharedPreferences(context.getPackageName(), 0);
        return prefs.getBoolean(key, defaultVal);
    }
}