Using shared preferences in between activities

前端 未结 3 1307
天涯浪人
天涯浪人 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:34

    To read shared datas in the second activity , change the mode :

    from MODE_WORLD_WRITEABLE to MODE_WORLD_READABLE

     SharedPreferences sharedPref = getSharedPreferences("myPrefs",Context.MODE_WORLD_READABLE);
      String theme=sharedPref.getString("theme","blue");
    

提交回复
热议问题