I did something similar.. I just did a list of TextViews (two TextView per row), and i needed to update one TextView in the list.. What i did was a vertical LinearLayout, and add Horizontal LinearLayouts that contained my TextViews.. Then i had a List of strings to look for the index of the one i needed to modify, and then search it with LinearLayout.getChildAt(int) and update the value...
CODE:
I have a list of strings and a counter that says how many times come this string...
private ArrayList<String> strList;
private ArrayList<Integer> counterList;
When the String is new:
strList.add(new_string);
TextView str = new TextView(getApplicationContext());
str.setText(sTemp);
str.setLayoutParams(strsTextView.getLayoutParams());
TextView strcounter = new TextView(getApplicationContext());
strcounter.setLayoutParams(counterTextView.getLayoutParams());
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.FILL_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT,1);
LinearLayout ll = new LinearLayout(this);
ll.setLayoutParams(new LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT,LinearLayout.LayoutParams.WRAP_CONTENT));
ll.setOrientation(LinearLayout.HORIZONTAL);
ll.addView(str, layoutParams);
layoutParams = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.FILL_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT,3);
counterList.add(1);
strcounter.setText("1");
ll.addView(strcounter, layoutParams);
mLinearLayout.addView(ll,new LayoutParams(LinearLayout.LayoutParams.FILL_PARENT,LinearLayout.LayoutParams.WRAP_CONTENT));
I check if the String is not new (is already in the strList)if(strList.indexOf(sTemp)!=0) and then do as follows:
Integer intaux =counterList.get(index);
intaux++;
counterList.set(index, intaux);
LinearLayout aux = (LinearLayout)mLinearLayout.getChildAt(index);
TextView aux2 = (TextView)aux.getChildAt(1);
aux2.setText(Integer.toString(intaux));
I hope i didn't miss anything and that this works for you.. If you don't understand anything tell me an i try to explain/correct it.
PS: I suppose that the Adapter solution of @abhijeet is a more elegant version of my implementation, but i haven't done it.