I have read about the 1000 item limit on xml arrays but I have a situation where I need to load 1400 items into an array list. Now as I understand it java will handle arrays larger then 1000 but the limitation falls with the XML. I have implemented code to load a java array directly from the XML file and that works fine but what I would like is to load a second xml array into an existing java array.
java array choices[0...1000] loaded from XML file 1
java array choices[1001...1400] loaded from XML file2
I am using something like this
final String[] mychoices = getResources().getStringArray(R.array.choices);
as I said this works great for loading an new array but is there an append to existing array structure


