I need to retrieve from a file one arrayList of Items, but i dont know where i need to put this retrieving code:
List<ItemCultural> cachedEntries = (List<ItemCultural>) InternalStorage.readObject(this, "arquivo.txt");
regraDeNegocioSingleton.getListaDeItensSingleton().setListaDeItensCulturais(cachedEntries);
And I need to write this object when app closes by this command:
InternalStorage.writeObject(this, "arquivo.txt", regraDeNegocioSingleton.getListaDeItensSingleton().getListaDeItensCulturais());
My InternalStorage Class:
I tried to Override onDestroy in my MainActivity but dont worked, and i put the retrieving code in my onCreate, but this method always called, not only time. Thanks!