0
由於我是黑莓/ Java開發的新手,我不知道如何在我的黑莓應用程序中使用「telugu」字體。請舉個例子。如何在黑莓應用程序中使用泰盧固語字體
看到三個模擬器 9300-OS6僅在本裝置中不顯示 9790-OS7顯示器之間的差。 9900-os7甚至OS7它不顯示。
由於我是黑莓/ Java開發的新手,我不知道如何在我的黑莓應用程序中使用「telugu」字體。請舉個例子。如何在黑莓應用程序中使用泰盧固語字體
看到三個模擬器 9300-OS6僅在本裝置中不顯示 9790-OS7顯示器之間的差。 9900-os7甚至OS7它不顯示。
import net.rim.device.api.system.*;
import net.rim.device.api.ui.*;
import net.rim.device.api.ui.container.*;
import net.rim.device.api.ui.component.*;
import java.util.*;
public class FontLoadingDemo extends UiApplication
{
public static void main(String[] args)
{
FontLoadingDemo app = new FontLoadingDemo();
app.enterEventDispatcher();
}
public FontLoadingDemo()
{
pushScreen(new FontLoadingDemoScreen());
}
}
class FontLoadingDemoScreen extends MainScreen
{
public FontLoadingDemoScreen()
{
setTitle("Font Loading Demo");
LabelField helloWorld = new LabelField("Hello World");
if (FontManager.getInstance().load("Myfont.ttf", "MyFont", FontManager.APPLICATION_FONT) == FontManager.SUCCESS)
{
try
{
FontFamily typeface = FontFamily.forName("MyFont");
Font myFont = typeface.getFont(Font.PLAIN, 50);
helloWorld.setFont(myFont);
}
catch (ClassNotFoundException e)
{
System.out.println(e.getMessage());
}
}
add(helloWorld);
}
}
來源:http://docs.blackberry.com/en/developers/deliverables/11958/Load_and_use_a_custom_font_899948_11.jsp
我通過更換Myfont.ttf作爲SHREE940.ttf試過這種.......烏拉圭回合樣的信息,我已經把這個文件在myproject的「資源」文件夾中,仍然得到盒子 –
你能詳細解釋一下你目前的狀態嗎?還是你的意思是這解決了這個問題?如果它解決了,請將其推上並標記爲解決方案,如果不給我提供更多詳細信息,以便我可以幫助您....您是什麼意思的「盒子」? –
是的,我改變了我的SDK和字體.....然後我的模擬器顯示TELUGU(gouthami.ttf)font.but它只顯示在9790模擬器在其他模擬器相同的以前的問題 –