How to store a Date object in SharedPreferences?

前端 未结 4 1170
鱼传尺愫
鱼传尺愫 2021-01-01 18:10

Is it possible to store a Date object using SharedPreferences?

Actually in my code I have a String variable, boolean

4条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-01-01 18:27

    you can store the date value using sharedpreferences like this way

    editor.putLong("date",currentDate.getTime());
    

提交回复
热议问题