当前位置:首页 > 全部子站 > IT > 思科认证

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

来源:长理培训发布时间:2017-12-21 16:42:21

 百度广告

  使用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

责编:罗莉

发表评论(共0条评论)
请自觉遵守互联网相关政策法规,评论内容只代表网友观点,发表审核后显示!

国家电网校园招聘考试直播课程通关班

  • 讲师:刘萍萍 / 谢楠
  • 课时:160h
  • 价格 4580

特色双名师解密新课程高频考点,送国家电网教材讲义,助力一次通关

配套通关班送国网在线题库一套

课程专业名称
讲师
课时
查看课程

国家电网招聘考试录播视频课程

  • 讲师:崔莹莹 / 刘萍萍
  • 课时:180h
  • 价格 3580

特色解密新课程高频考点,免费学习,助力一次通关

配套全套国网视频课程免费学习

课程专业名称
讲师
课时
查看课程
在线题库
面授课程更多>>
图书商城更多>>
在线报名
  • 报考专业:
    *(必填)
  • 姓名:
    *(必填)
  • 手机号码:
    *(必填)