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 {
    static final String AGE_PREFERENCES = "age_preferences";
    static final String AGE_CURRENT_APP_KEY = "current_app_key";

    static String loadCurrentAppKey(Context context) {
        SharedPreferences prefs = context.getSharedPreferences(AGE_PREFERENCES, Context.MODE_PRIVATE);

        return prefs.getString(AGE_CURRENT_APP_KEY, null);
    }
}