lwuit
蜡台
蜡炬成灰蜡台心悲
展开
-
在调试中偶尔会出现Malformed HTML - no appropriate closing tag for html的错误信息
<br />在调试中偶尔会出现Malformed HTML - no appropriate closing tag for html的错误信息。<br /><br /> 判断是HTML标签没有关闭。但是输出的HTML的确是完整开闭的。<br /><br /> DEBUG调试,按每个字进行判断,突然发现在处理“绿”这个字的时候循环跳出。问题出在Parser.java中的 parseTagContent方法,原来程序用while循环,while((byte)c!=-1),c从哪里来?从流中读取char c原创 2010-12-03 09:09:00 · 1019 阅读 · 0 评论 -
lwuit Animations
<br />Animations and transitions are two very interesting features of the Lightweight User Interface Toolkit (LWUIT). In this article we will see how to use these features in actual applications. We also develop a custom transition animation. Althoug原创 2010-12-23 00:33:00 · 1210 阅读 · 0 评论 -
LWUIT实现进度条提示的方法
<br />LWUIT实现进度条代码如下:(本源代码改自SUN的工程师Shai Almog的BLOG里的技术文章) <br /> import com.sun.lwuit.Component; <br /> import com.sun.lwuit.Display; <br /> import com.sun.lwuit.Font; <br /> import com.sun.lwuit.Graphics; <br /> import com.sun.lwuit.Image; <br /> im原创 2010-12-21 16:24:00 · 838 阅读 · 0 评论 -
lwuit控件布局定位
<br />SUN LWUIT-Lightweight User Interface Toolkit(轻量级用户界面工具包)简介:<br />LWUIT是一个轻量级JavaME UI工具包。LWUIT类似Swing 的MVC架构, 支持多种布局(Layouts), 皮肤更换, 字体, 触摸屏, 动画效果, Rich控件, 3D集成, Painter, 模式对画框, I18N/L10N等。<br />j2me不像.net开发Mobiel应用软件可以有控件拖拉布局界面,初作基于lwuit的页面布局更是让人煞费苦原创 2010-12-22 16:03:00 · 708 阅读 · 0 评论 -
你好,LWUIT!
Innovation Never Dies:JavaME and mobile technology<br />Skip to content , navigation .你好,LWUIT!<br />你是个JavaME程序员吗?如果答案是"是",那么请你现在拿出纸和笔,在上面写下最让你头疼的10件事情.除了"工资永远不够买房子" 或是"没有时间交女朋友"之类的,我敢打赌"用JavaME写漂亮的用户界面太麻烦了"一定位列其中.无论是MIDP1.0还是 MIDP2.0,LCDUI要么总是摆出一原创 2010-11-10 13:41:00 · 749 阅读 · 0 评论 -
LWUIT与LCDUI的结合
<br />Lwuit与Lcdui可以相互调用,如果需要在一个Midlet中同时使用Lwuit和Lcdui库,需要在Midlet中保留一个Lcdui Display的全局变量,可以在startApp方法中初始化。示例如下:<br />privatejavax.microedition.lcdui.Display lcduiDisplay; //.... publicvoidstartMIDlet() {//... lcduiDisplay = Display.getDisplay(this);//..原创 2011-03-05 17:42:00 · 868 阅读 · 0 评论 -
j2ME中 lwuit实现按钮缩放功能代码解析
<br />j2ME中 lwuit实现按钮缩放功能代码解当用户按下按钮的时候 实现缩放功能final Button b = new Button(NameList[i], unselectedImages[i]) {public Image getPressedIcon() {<br /> Image i = getIcon();<br /> return i.scaled((int) (i.getWidth() * 0.8), (int) (i.getHeight() * 0.8));<br />原创 2011-03-07 17:04:00 · 679 阅读 · 0 评论