i need your help because I may not have understood it well.
This List<String[]> dataList defines an list with string arrays, right?
So lets say that I have this values:
info[0], info[1], name[0],name[1]
How can I assign them to the above list, grouped by index? I mean the info[0] be with name[0], and so on. I want this is because later in my code I will use this:
public FacilitiesAdapter (List<String[]> dataList) {
this.dataList = dataList;
}
and I need my datalist to have in each row, the data I want. Have I understood something wrong?
Something like this??