Using shared preferences in between activities

前端 未结 3 1310
天涯浪人
天涯浪人 2021-02-04 21:57

I am trying to share a shared preference in between two activities of my project, but for some reason I am not able to pass the data.

I have Activity A which reads the s

3条回答
  •  灰色年华
    2021-02-04 22:26

    You can do simpler - in any activity:

    SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
    

    You will have the same prefs this way from anywhere.

    http://developer.android.com/reference/android/preference/PreferenceManager.html#getDefaultSharedPreferences(android.content.Context)

提交回复
热议问题