Java tutorial
//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); } }