TagCustom Font

Custom Fonts in Blackberry Application

C

Download the .ttf (True Type Font)file and include it in src folder. Include this code into the constructor. EditField edField1 = new EditField (“”, “TestEditField”, 30, EditField.READONLY| EditField.FIELD_VCENTER){ protected void layout(int width, int height) { super.layout(customWidth, customHeight); setExtent(customWidth, customHeight); } }; Font fo3 =...

Category