1

How to set multiple fonts in blackberry? Actually we are using the following code to load the custom fonts to our application.

InputStream is = this.getClass().getResourceAsStream("/Text-Italic.ttf");
FontManager.getInstance().load(is, "Text-Italic",
FontManager.APPLICATION_FONT) ;                          

If I want to set another font, Do I have to unload the current font or not?

Arun Paarthi
  • 633
  • 6
  • 23
M Vignesh
  • 1,486
  • 2
  • 17
  • 51

1 Answers1

2

No. You don't have to unload the current font. You can add another custom font.

Thanks

Naveen M

Naveenan
  • 121
  • 1