Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; import android.preference.PreferenceManager; public class Main { public static final String PREF_MENLO_FONT = "pref_menlo_font"; public static boolean getPrefMenlofont(final Context context) { SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(context); return sp.getBoolean(PREF_MENLO_FONT, true); } }