问题
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?
回答1:
No. You don't have to unload the current font. You can add another custom font.
Thanks
Naveen M
来源:https://stackoverflow.com/questions/11309855/to-set-multiple-fonts-in-blackberry