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.getFo开发者_开发百科ntFamilies(); Font font2 = fontFamily[0].getFont(FontFamily.SFF4_FONT,18);
is showing bold style how to use different font styles plz help me
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);
精彩评论