I\'m getting this error in my coding and not entirely sure how to resolve this. I\'ve searched to try and resolve this issue but can\'t seem to find anything that works. I\'ve
Change this code :
SharedPreferences pref = getSharedPreferences(PREFRENCES_NAME,0);
To :
SharedPreferences pref = getActivity().getSharedPreferences(PREFRENCES_NAME,0);
Remember you cant call getSharedPreferences method directly from Fragment, because it belongs to the Activity class. Hence, you just need to call getActivity.