It's a bug of nokia dev suite S60??? code as blow:
It's work in S40 emulator was fine,but in s60 IT IS A WHITE RECT.
, what should i do?
protected void paint(Graphics g)
{
g.setColor(255,0,0);
g.fillRect(0,0,this.getCanvasWidth(),this.getCanvasHeight());
Image img=DirectUtils.createImage(100,100,0x00000000);
g.drawImage(img,0,0,Graphics.TOP|Graphics.LEFT);
}

, what should i do?
Reply With Quote


