Android SharedPreferences in Fragment

前端 未结 10 1668
萌比男神i
萌比男神i 2020-11-29 17:16

I am trying to read SharedPreferences inside Fragment. My code is what I use to get preferences in any other Activity.

     SharedPreferences preferences = g         


        
10条回答
  •  盖世英雄少女心
    2020-11-29 17:59

    The marked answer didn't work for me, I had to use

    SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getActivity());
    

    EDIT:

    Or just try removing the this:

    SharedPreferences prefs = getActivity().getSharedPreferences("pref", Context.MODE_PRIVATE);
    

提交回复
热议问题