Sto cercando di leggere SharedPreferences all'interno di Fragment. Il mio codice è ciò che utilizzo per ottenere le preferenze in qualsiasi altra attività.
SharedPreferences preferences = getSharedPreferences("pref", 0);
Ottengo errore
Cannot make a static reference to the non-static method getSharedPreferences(String, int) from the type ContextWrapper
Ho provato a seguire questi collegamenti ma senza fortuna accedendo a SharedPreferences tramite metodi statici e Static SharedPreferences . Grazie per qualsiasi soluzione.