I have a text file that contains around 2000 words, I'm working on an Android application that will display 2-7 words each time ( in the same order of words stored in that file).
It's obvious that its not efficient to load the file and get the words to be displayed every time the application starts.
I thought about storing the words in a database and retrieve the words that I need to display. I have never dealt with database before. But I know that I should create the database once and access it in next runs.
Is this possible?
Or should I write another application to create the database and then access it in android?
Regards,