Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { private static final String PREFS_NAME = "AllDemo_Prefs"; public static float getFloat(Context context, String key, float defValue) { SharedPreferences sharedPreferences = context.getSharedPreferences(PREFS_NAME, 0); return sharedPreferences.getFloat(key, defValue); } }