Hi
I have created LWUIT TextArea,and i added paragraphs of text to my Text area ,now i want to reduce my text area font size,i have used the below code:
TextArea big = new TextArea(detailNews.getDescription());
Font createSystemFont = Font.createSystemFont(Font.FACE_SYSTEM, Font.STYLE_ITALIC, Font.SIZE_SMALL); big.getStyle().setFont(createSystemFont); big.setEditable(false);
form2.addComponent(big);
form2.show();
But i am not able to reduce the font of my text?
How to align the paragraph of text on text area?

Reply With Quote


