Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { private static final String PREF_NAME = "mypref"; /** * read int value from preference memory */ public static int getInt(Context context, String key, int defValue) { if (context == null) return defValue; SharedPreferences settings = context.getSharedPreferences(PREF_NAME, 0); return settings.getInt(key, defValue); } }