getstringarray

Should I be using something other than getResource().getStringArray() to populate a large array?

Following the Android sample for populating a ListView, I query an array from my strings.xml using Activity.getResource().getStringArray(): String [] mDefinitions = getResources().getStringArray(R.array.definition_array); The documentation for this method is pretty clear and I didn't expect to encounter any problems with it: Retur...