Android SharedPreferences in Fragment

前端 未结 10 1669
萌比男神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 18:02

    You can make the SharedPrefences in onAttach method of fragment like this:

    @Override
    public void onAttach(Context context) {
        super.onAttach(context);
        SharedPreferences preferences = context.getSharedPreferences("pref", 0);
    }
    

提交回复
热议问题