Android -Liste erhalten
ArrayList<String> list = ...
String item = list.get(index); // get the ith element of the list
Merlin4 (personal)
ArrayList<String> list = ...
String item = list.get(index); // get the ith element of the list
for (int i=0;i<retailerNamesList.size();i++){
retailerNamesList.get(i);
}