Ok here is the main idea: I need a list of text (f.e. "one", "two", "three", "four", "five").
Then I will create a button (RandomButton) when onClick it will display one of the texts in random order. Say for example that I pressed the RandomButton and it popped the word "three".
I will have a second button (CheckButton) when I press it it transfer the word "three" to second activity and deletes the word "three" so it wont be sawn again. Then I press again the RandomButton and it will dislplay f.e. the word "two".
When I press the CheckButton it will transfer the word "two" above the word "three" in the second activity.
Therefore it will create a list of the words sometime.
If I close the app and reopen it the list it will be already created and the deleted words will remain deleted.
What is the best way to do this? Any ideas?
I did it already with strings but when I close the app and reopen it its like Im opening it for the first time..