4

Is there any way to set the size(means font size,i want to make my text larger contaning font size of 17-20) of the text in the label in LWUIT for J2ME.

Lucifer
  • 29,392
  • 25
  • 90
  • 143
ios developer
  • 3,363
  • 3
  • 51
  • 111

1 Answers1

8

You can set the large text by two ways.

  1. Use ResourceEdit and Create the new Large Font in Font tab. Then change the Label#Unselected font to that new Large Font.
  2. Use following code,

new Label("Sample").getStyle().setFont(Font.createSystemFont(Font.FACE_SYSTEM, Font.STYLE_PLAIN, Font.SIZE_LARGE));

For more info see this article, Using Font with LWUIT

bharath
  • 14,283
  • 16
  • 57
  • 95