Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { public static Float getFloatFromSP(Context context, String key) { SharedPreferences sp = getSharedPreferences(context); return sp.getFloat(key, 0.0f); } public static Float getFloatFromSP(Context context, String key, float def) { SharedPreferences sp = getSharedPreferences(context); return sp.getFloat(key, def); } public static SharedPreferences getSharedPreferences(Context context) { return context.getSharedPreferences("config", Context.MODE_PRIVATE); } }