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
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
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);