Android SharedPreferences in Fragment

前端 未结 10 1639
萌比男神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:55

    The method getSharedPreferences is a method of the Context object, so just calling getSharedPreferences from a Fragment will not work...because it is not a Context! (Activity is an extension of Context, so we can call getSharedPreferences from it).

    So you have to get your applications Context by

    // this = your fragment
    SharedPreferences preferences = this.getActivity().getSharedPreferences("pref", Context.MODE_PRIVATE);
    

提交回复
热议问题