I've created a Label on a Form, but is too large to show it in one line, is it posible make a break line? I am using LWUIT on J2ME.

Thank you.

link|improve this question

0% accept rate
1  
Have you tried '\n'? – rossum Feb 3 at 12:55
feedback

4 Answers

Label is not make to break lines. Why don't you try with TextArea? It allows you to show multiline items.

link|improve this answer
feedback

Use TextArea instead of Label and disable the editable mode and create empty border to that TextArea. Label isn't allow multi line.

link|improve this answer
1  
Both this and jmunoz answers are correct. I would personally add: textArea.setUIID("Label") instead of setting the border. – Shai Almog Feb 4 at 10:43
feedback

Create a Label label = new Label(" ") and add it to the container.

link|improve this answer
feedback

Create many labels and place them inside a BoxLayout(Y_AXIS) Container.

link|improve this answer
@ pheromix, It a bad idea. – bharath Feb 3 at 13:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.