Topic: 图片问题

  Print this page

1.图片问题 Copy to clipboard
Posted by: simule
Posted on: 2005-04-15 15:24

import javax.microedition.midlet.MIDlet;
import javax.microedition.midlet.MIDletStateChangeException;
import javax.microedition.lcdui.*;

public class ImageEX extends MIDlet implements CommandListener{
  private Command cmdExit;
  private ImageCanvas canvas;
  public ImageEX(){
    cmdExit=new Command("Exit",Command.SCREEN,2);
    canvas=new ImageCanvas();
  }
  protected void startApp() throws MIDletStateChangeException {
    canvas.addCommand(cmdExit);
    canvas.setCommandListener(this);
    Display.getDisplay(this).setCurrent(canvas);
      }

  
  protected void pauseApp() {
    // TODO Auto-generated method stub

  }

    protected void destroyApp(boolean arg0) throws MIDletStateChangeException {
      }
  public void commandAction(Command command,Displayable screen){
    if (command==cmdExit){
      notifyDestroyed();
      }
    }

}
class ImageCanvas extends Canvas{
  public void paint(Graphics g){
    try{
      Image image=Image.createImage("/ys3.PNG");
  
      g.drawImage(image,0,0,g.TOP|g.LEFT);}
  catch(Exception e){System.out.println(e.getMessage());}
  
      
  }
}
为什么图片不能显示,图片应放在哪里?
还有在编译时出现:
The static field Graphics.TOP should be accessed in a static way
The static field Graphics.LEFT should be accessed in a static way

2.Re:图片问题 [Re: simule] Copy to clipboard
Posted by: simule
Posted on: 2005-04-16 19:43

谁知道指点新手一下!

3.Re:图片问题 [Re: simule] Copy to clipboard
Posted by: simule
Posted on: 2005-04-20 12:39

问题知道了.
嘿,这里真冷


   Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent
Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1
客服电话 18559299278    客服信箱 714923@qq.com    客服QQ 714923