I have an ArrayList of TextViews of a fixed size X.
I want to set the text of the TextViews based on a smaller ArrayList of Strings.
The remaining ArrayList TextViews I want them to have e.g a dash
How I am going to accomplish this with following way?
for(int i = 0; i<TotalList.size();i++)
{
TotalList.get(i).setText(SmallerList.get(a).toString());
a++;
}