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 {
    public static final String USER_LEVEL = "user_level";
    public static final String USER_INFO_OTHER = "user_info_other";

    public static String getUserLevel(Context context) {
        SharedPreferences preferences = context.getSharedPreferences(USER_INFO_OTHER, Context.MODE_PRIVATE);
        String userLevel = preferences.getString(USER_LEVEL, "");
        return userLevel;
    }
}