Friday, 24 March 2017

java - How do I store data in my android app?

I'm very new to Android Developing. I made a small 2d game and I was wondering what the easiest way to store the high-score would be, so if the app is exited and returned to the high-score is retrieved from the last session. Any help would be appreciated!

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...