If I create buttons dynamically in a loop,
for(i=0; i < size; i++) {
Button button = new Button(this);
myLayout.addView(button);
}
How can I reference each of these buttons at a later time? So, for eg, if I wanted to change the text on a few buttons, how would I do that?
Thanks Chris