Save content on the phone itself

0

I'm doing an application, where I have a list of questions, and if the user quits the application or the screen, I would like to save the questions that he has already answered, by when he re-access that form, the questions will be saved in memory.

To do this, what would be the best option, SharedPreferences or InputStrem ?

    
asked by anonymous 22.12.2016 / 14:41

1 answer

1

I think storing data in SharedPreferences is not a good idea. Instead, save the progress to a local SQLite database. Then when logging in again just bring what has already been answered.

    
22.12.2016 / 17:54