lwuit---更改字体大小
来源:技术人生 责任编辑:栏目编辑 发表时间:2013-07-02 05:30 点击:次
lwuit默认的字体是比较小的,所以我们可以在系统上做个设置字体大小的。
首先在Midlet上设置字体大小,
Font.setDefaultFont(Font.createSystemFont(Font.FACE_SYSTEM,
Font.STYLE_PLAIN, Font.SIZE_MEDIUM));
Font.SIZE_MEDIUM这个值改成读变量的,
然后就是读取了,在 UIManager类上:
public Style getComponentStyle(String id){
Style style = null;
if(id == null || id.length() ==0){
//if no id return the default style
id = "";
}else{
id = id + ".";
}
style = (Style)styles.get(id);
if(style == null){
style = createStyle(id);
styles.put(id, style);
}
//设置系统字体(读取)
style.setFont(Font.getDefaultFont());
return new Style(style);
}
本文出自 “技术人生” 博客,请务必保留此出处http://zhaohaiyang.blog.51cto.com/2056753/435608
相关新闻>>
- 发表评论
-
- 最新评论 更多>>