I have been testing the Blackberry LabelField, ObjectListField and other input classes.
I would like to add a number of Label fields to the bottom of a BlackBerry screen.
For example, I have an application that gets GPS readings. I would like to append a Label field for each record.
Furthermore I want to display items one at a time over a period of time (eg 5 minutes) What structure/technique would be best for this?
maybe something like:
  for (int count = 1; count <10 ; count++) 
  {
    String LabelField = "labelField" +                
    String.valueOf(count);                                
    LabelField = new LabelField();
    add(LabelField);
  }