Is possible store a list within application, without necessarily having a database?
Otherwise, what would be the easiest way to store a simple list?
Is possible store a list within application, without necessarily having a database? Otherwise, what
Share
I think it depends on the contents of the list you are working on. If your List is storing “Simple-Objects” only (like List of String List of integer or other Objects with only a few members) you can use SharedPrefenrences which are build in in Android. They need a key and a value. So if your List contains 5 Objects of – lets say Points to keep it simple – you can save them like
to recieve this again you could just say