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.preference.PreferenceManager;

public class Main {
    /**
     * 
     * @param context
     * @param key
     * @return
     */
    private static boolean getEnable(Context context, String key) {
        return PreferenceManager.getDefaultSharedPreferences(context).getBoolean(key, false);
    }
}