I'm making an Android App for my friends and family based on the game Taboo. Basically, the game displays a main word, and then a list of restricted words. The object is to get your teammates to say the main word, but you cannot say any of the restricted words.
For this app, I would need several hundred main words, plus 7 restricted words for each main word.
My issue is how to store these so they can be accessed by a randomly by the app.
My initial thought was to use an XML resource using string arrays, but I do not know how I would reference these with a random generator.
I am open to any and all suggestions. I am working in Eclipse using the Android SDK.
Just to clarify, I am experienced in Java/C/C++, but this is my first Android App. I have the game framework almost complete, and this is my only major issue.
Any help is appreciated.