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?