se hai list che estende List

String s = "";
for (int i=0; i<list.size(); i++) {
s += i + " " + list.get(i).toString() + "\n"; // se è una stringa
}