赛迪网 > IT技术 Java > 技术动态
  IT资讯搜索
 
IT产品搜索
[程序开发][网管世界][网络安全][数据库技术]
[操作系统][嘉宾聊天·在线访谈][活动集锦]
[精彩专题][Symantec专区][订阅IT技术周刊]
[开发论坛][网管论坛][安全论坛][数据库论坛]
[操作系统论坛][Sybase专区][IBM dW技术专区]
[病毒求助][病毒与漏洞播报][文档·源码下载]

用J2ME在移动设备上实现动画的实例讲解 (1)

发布时间:2007.08.10 06:18     来源:赛迪网    作者:dxaw

使用MIDP(Mobile Information Device Profile)的开发人员经常会抱怨用些什么办法才可以在一个MIDlet上显示动画。MIDP 1.0 没有直接提供对动画的支持(正在开发中的MIDP 2.0支持),但真要是自己去实现,其实也并非是一件很难的事。

任何动画的最基本的前提,是要在足够快的时间内显示和更换一张张的图片,让人的眼睛看到动的画面效果。图片必须按照顺序画出来。从一张图片到下一张图片之间的变化越小,效果会越好。

首先要做的,是使用你的图片处理软件(比如ps或者firework)创建一系列相同大小的图片来组成动画。每张图片代表动画一帧。

你需要制作一定数量的祯--越多的帧会让你的动画看上去越平滑。制作好的图片一定要保存成PNG(Portable Network Graphics) 格式,MIDP唯一支持的图片格式;(有两个办法让你刚做好的图片在MIDlet上变成动画。第一,把图片都放到一个web服务器上,让MIDlet下载他们,MIDP内置的HTTP支持。第二个办法更简单,把图片用MIDlet打包成jar文件。如果你使用的是J2ME开发工具,把PNG文件放在你的项目文件里面就可以了。

动画的过程其实更像帐本记录:显示当前帧,然后适当地更换到下一帧。那么使用一个类来完成这个工作应该是很恰当的,那好,我们就先定义一个AnimatedImage类:

import java.util.*; 
import javax.microedition.lcdui.*; 
// 定义了一个动画,该动画其实只是一系列相同大小的图片 
// 轮流显示,然后模拟出的动画 
public class AnimatedImage extends TimerTask {; 
private Canvas canvas; 
private Image[] images; 
private int[][] clipList; 
private int current; 
private int x; 
private int y; 
private int w; 
private int h; 

// Construct an animation with no canvas. 

public AnimatedImage( Image[] images ){; 
this( null, images, null ); 
}; 

// Construct an animation with a null clip list. 

public AnimatedImage( Canvas canvas, Image[] 
images ){; this( canvas, images, null ); 
}; 

// Construct an animation. The canvas can be null, 
// but if not null then a repaint will be triggered 
// on it each time the image changes due to a timer 
// event. If a clip list is specified, the image is 
// drawn multiple times, each time with a different 
// clip rectangle, to simulate transparent parts. 

public AnimatedImage( Canvas canvas, Image[] images, 
int[][] clipList ){; 
this.canvas = canvas; 
this.images = images; 
this.clipList = clipList; 

if( images != null && clipList != null ){; 
if( clipList.length < images.length ){; 
throw new IllegalArgumentException(); 
}; 
}; 

if( images != null && images.length > 0 ){; 
w = images[0].getWidth(); 
h = images[0].getHeight(); 
}; 
}; 

// Move to the next frame, wrapping if necessary. 

public void advance( boolean repaint ){; 
if( ++current >= images.length ){; 
current = 0; 
}; 

if( repaint && canvas != null && canvas.isShown() 
){; 
canvas.repaint( x, y, w, h ); 
canvas.serviceRepaints(); 
}; 
}; 

// Draw the current image in the animation. If 
// no clip list, just a simple copy, otherwise 
// set the clipping rectangle accordingly and 
// draw the image multiple times. 

public void draw( Graphics g ){; 
if( w == 0 || h == 0 ) return; 

int which = current; 

if( clipList == null || clipList[which] == null 
){; 
g.drawImage( images[which], x, y, 
g.TOP | g.LEFT ); 
}; else {; 
int cx = g.getClipX(); 
int cy = g.getClipY(); 
int cw = g.getClipWidth(); 
int ch = g.getClipHeight(); 

int[] list = clipList[which]; 

for( int i = 0; i + 3 <= list.length; i += 
4 ){; 
g.setClip( x + list[0], y + list[1], 
list[2], list[3] ); 
g.drawImage( images[which], x, y, 
g.TOP | g.LEFT ); 
}; 

g.setClip( cx, cy, cw, ch ); 
}; 
}; 

// Moves the animation's top left corner. 

public void move( int x, int y ){; 
this.x = x; 
this.y = y; 
}; 

// Invoked by the timer. Advances to the next frame 
// and causes a repaint if a canvas is specified. 

public void run(){; 
if( w == 0 || h == 0 ) return; 

advance( true ); 
}; 
};

你实例化一个AnimatedImage对象的时候你必须给AnimatedImage类的构造方法传一个Image对象数组,该数组代表动画的每一帧。使用的所有图片必须具有相同的高度和宽度。用Image.createImage()方法从jar文件里面加载图片:

private Image[] loadFrames( String name, int frames ) 
throws IOException {; 
Image[] images = new Image[frames]; 
for( int i = 0; i < frames; ++i ){; 
images = Image.createImage( name + i + 
".png" ); 
}; 

return images; 
};

你也可以传递一个Canvas对象(可选),和一个剪辑列表(clip list)。如果你指定了一个canvas和使用一个timer来自动更换到动画的下一帧,就如下面的例子代码中一样,canvas在动画向前滚动以后自动被重画(repaint)。不过这样的实现办法是可选的,你可以这样做,也可以让程序选择合适的时候重画canvas。

1 2 下一页>>


[ 发表评论 ] 字体[  ] [ 打印 ] [ 进入博客 ] [ 进入论坛 ]  [ 推荐给朋友 ]
  相关文章
· 教你轻松学会SQL Server记录轮班的技巧 (08-09) · SQL进行排序、分组、统计的10个新技巧 (08-09)
· 用Java来监视系统进程的解决方案 (08-08) · B/S方式下使用jfreechart生成统计图表 (08-08)
· 使用Java来实现编辑器的Undo Redo功能 (08-07) · Java使用技巧:访问在接口中定义的常量 (08-06)
· BeanShell 在人工测试与管理之中的应用 (08-06) · 让系统更听话 Windows XP 管理技巧总结 (08-06)
· JSP获取客户端的浏览器和操作系统信息 (08-03) · Java同步机制:sychronized对代码影响 (08-03)
  客户需求反馈表
* 姓  名:
更多资料  了解方案  认识厂商
* 单位名称:
* 联系电话:
* 电子邮件:
  赛迪推荐  
  手机·资费 ·新品·导购·评测·手机资费·宽带
手机搜索  诺基亚 N73 MOTO Z6
  IT产品 ·笔记本·台式机·服务器·打印·投影
IT产品搜索 
  IT技术 ·开发·网管·安全·数据库·操作系统
  信息化 ·热点·专题·访谈·周刊·方案案例
· 信息化市场百家争鸣 SaaS深陷争议“泥潭”
· 提高管理水平 "两栖"CIO应具备的六大能力
· 国产ITIL运维先行者 四大厂商角力BI市场
· 金融行业GSN专题解决方案 企业网解决方案
  IT博客 ·曾剑秋·项立刚·Java学习·网管
  IT技术论坛 ·开发·网管·安全·数据库·系统