I am trying to create an app that shows a list of picture(with pagination) from an API, and when you click on a photo, it opens the photo (probably in a new activity) with zooming and stuff. My question is how should I store the API responses? Should I
- Store them in
Application
class - Make a singleton class and store it there
- Use a SQLite database
I know the answer will heavily depends on the data, so at least what should I consider when choosing between these 3 options? Or are there better options?
Thanks!
It depends on the scope of your data according to your requirements.
Hope it will help you to choose!