Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { private static final String SETTINGS_PREF = "settings.pref"; private static final String PREF_USE_CELSIUS = "use_celsius"; public static boolean getUseCelsius(Context context) { SharedPreferences pref = context.getSharedPreferences(SETTINGS_PREF, Context.MODE_PRIVATE); return pref.getBoolean(PREF_USE_CELSIUS, true); } }