Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

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

public class Main {
    private static final String IS_GUIDED = "is_guided";

    public static boolean isGuided(Context context) {
        SharedPreferences pref = context.getSharedPreferences(context.getPackageName() + "_preferences", 0);
        return pref.getBoolean(IS_GUIDED, false);
    }
}