How can I save data from Android service?

前端 未结 4 904
眼角桃花
眼角桃花 2021-01-13 14:21

I have a service that collects data, can I save the data in case of reboot or any other action that will restart the service, and how can I do it?

4条回答
  •  情歌与酒
    2021-01-13 15:03

    Can I save the data in case of reboot or any other action that will restart the service

    You will not necessarily find out when those sorts of events will occur. Save your data as you go.

    And how can I do it?

    Use a file. Or a database, which is a type of file. Or a SharedPreferences structure, which is backed by a type of file.

提交回复
热议问题