Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

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

public class Main {

    private final static String CONFIG_FILE_NAME = "app_config";

    public static String get(Context context, String key, String defValue) {
        SharedPreferences preferences = context.getSharedPreferences(CONFIG_FILE_NAME, Context.MODE_PRIVATE);
        return preferences.getString(key, defValue);
    }
}