As you will know, extracting an item from an ArrayList is done in the following way:
arraylist.get(position).get("elemento")
to convert it to String as I read:
String abc =TextUtils.join("", ArrayList);
How to make a specific item and convert it to String? example:
String abc =TextUtils.join("", ArrayList.get(position).get(elemento));
try that way but it does not work.