Android SharedPreferences in Fragment

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

    getActivity() and onAttach() didnot help me in same situation
    maybe I did something wrong
    but! I found another decision
    I have created a field Context thisContext inside my Fragment
    And got a current context from method onCreateView
    and now I can work with shared pref from fragment

    public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container,
                                 Bundle savedInstanceState) {   
    ...   
    thisContext = container.getContext();   
    ...   
    }
    

提交回复
热议问题