Android - SharedPreferences with serializable object

前端 未结 6 1703
死守一世寂寞
死守一世寂寞 2020-11-29 01:55

I know that SharedPreferences has putString(), putFloat(), putLong(), putInt() and putBoolean(). But I need

6条回答
  •  青春惊慌失措
    2020-11-29 02:32

    If you object is simple POJO you can convert object to JSON string and save it in shared preferences with putString().

提交回复
热议问题