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
  • 51,962
  • 152
  • 427
  • 752

2 Answers2

1

BlackBerry - Add items to a ListField

Community
  • 1
  • 1
blue-sky
  • 51,962
  • 152
  • 427
  • 752
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
  • 1
  • 9
  • 24