我正在开发一个需要使用一些自定义字体的 BB 应用程序。我试图将它们加载为“静态”
public class MyFontTool
{
public static FontFamily fontSolanoGothicMVBLt = Font.getDefault().getFontFamily();
try {
if (FontManager.getInstance().load("font/SolanoGothicMVB-Lt.ttf",
"SolanoGothicMVB-Lt", FontManager.APPLICATION_FONT) == FontManager.SUCCESS) {
fontSolanoGothicMVBLt = FontFamily
.forName("SolanoGothicMVB-Lt");
}
}
catch (ClassNotFoundException e) {
e.printStackTrace();
}
}
不确定这是否可行,但是当我运行应用程序时,我收到了这条消息:
错误开始...:找不到类“net.rim.device.api.ui.FontManager”。
我正在使用黑莓 SDK 5.0
知道为什么这不起作用吗?