How to use Different font for LabelField like Arial,TimesNewRoman in BlackBerry

1k Views Asked by At

Hi friends I am using LabelFields to display text message in a screen i want different fonts each LabelField but when i am using api fonts of blackberry using

FontFamily fontFamily[] = FontFamily.getFontFamilies(); Font font2 = fontFamily[0].getFont(FontFamily.SFF4_FONT,18);

is showing bold style how to use different font styles plz help me

1

There are 1 best solutions below

0
On BEST ANSWER

try this

 FontFamily alphaSerifFamily = FontFamily.forName("BBAlpha Serif"); 
 Font appFont = alphaSerifFamily.getFont(Font.PLAIN,7,Ui.UNITS_pt);

 LabelField lb = new LabelField("Test");
 lb.setFont(appFont);