2010년 11월 29일 월요일

animated gif for mildet

Player player;
Form form;
VideoControl vidc;
Item videoItem;
form = new Form("Play gif");
Display.getDisplay(this).setCurrent(form);
InputStream ins = getClass().getResourceAsStream("/image.gif");
player = Manager.createPlayer(ins, "image/gif");
player.prefetch();
player.start();
if ((vidc = (VideoControl) player.getControl("VideoControl")) != null)
videoItem = (Item)vidc.initDisplayMode(VideoControl.USE_GUI_PRIMITIVE, null);
form.append(videoItem);