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 = "toppatch";
    private static final String USER_LOGGED_IN = "user_logged_in";

    public static boolean isUserLoggedIn(Context context) {
        SharedPreferences sharedPreferences = context.getSharedPreferences(PREF_NAME, Context.MODE_PRIVATE);
        return sharedPreferences.getBoolean(USER_LOGGED_IN, false);
    }
}