Estoy tratando de leer SharedPreferences dentro de Fragment. Mi código es lo que utilizo para obtener preferencias en cualquier otra actividad.
SharedPreferences preferences = getSharedPreferences("pref", 0);
Me sale un error
Cannot make a static reference to the non-static method getSharedPreferences(String, int) from the type ContextWrapper
Intenté seguir estos enlaces pero no tuve suerte Accediendo a SharedPreferences a través de métodos estáticos y Static SharedPreferences . Gracias por cualquier solución.