Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.content.Context;
import android.content.SharedPreferences;

public class Main {
    private static final String PREF_NAME = "mypref";

    /**
     * read boolean value from preference memory
     */
    public static boolean getBoolean(Context context, String key, boolean defValue) {
        if (context == null)
            return defValue;
        SharedPreferences settings = context.getSharedPreferences(PREF_NAME, 0);
        return settings.getBoolean(key, defValue);
    }
}