I have a variety of string arrays I want to access depending on which one the user decides to use. I don\'t want to use a SQLite DB because I am very new to Android/Java an
int holderint = getResources().getIdentifier(name, "array",
this.getPackageName()); // You had used "name"
String[] items = getResources().getStringArray(holderint);