SharedPreferences preferences = getSharedPreferences("my_prefs", MODE_PRIVATE); float myFloat = preferences.getFloat("float_key", 0.0f);
SharedPreferences preferences = getSharedPreferences("my_prefs", MODE_PRIVATE); MapThis example retrieves all the shared preferences stored in "my_prefs" as a Map object. We then cast the value associated with "float_key" to a float and assign it to the variable myFloat. Package Library: android.content.allPrefs = preferences.getAll(); float myFloat = (float) allPrefs.get("float_key");