If I have an activity, and I want that activity to get data from a stub file within the project and put it into an array, how would I do this?
At the moment I've used data which is hard coded into the activity using a setListAdapter making a new ArrayAdapter with the following building this array:
static final String[] Food = new String[] {
"Chips", "Fish"
};