How to manipulate with incremental names of fields? For example:
myBitmapField1
myBitmapField2
myBitmapField3
...
Is a way to add them to FieldManager in a way like this or similar:
int i = 0;
while (i < 1000)
{
i = i + 1;
if (myCounter == i)
myVerticalFieldManager.add(_myBitmapField[i]);
}
...
There is a way to manipulate with incremental names of file names like this:
myBitmapField.setBitmap(Bitmap.getBitmapResource("a" + myCounter + ".png"));
But I need to manipulate with names of fields ! How could I do that?