1

I'd like to display a large text area which uses most the blackberry screen area. What is the best GUI component for this ?

Thanks

blue-sky
  • 49,326
  • 140
  • 393
  • 691

2 Answers2

1

BlackBerry - Add items to a ListField

Community
  • 1
  • 1
blue-sky
  • 49,326
  • 140
  • 393
  • 691
1

I think LabelField whould be enough, check this:

    String text = "";
    for (int i=0;i<1000;i++) {
        text += "word" + i + " ";
    }

    LabelField largeLabel = new LabelField(text, LabelField.USE_ALL_WIDTH);

    add(largeLabel);
Janci
  • 863
  • 9
  • 24