Hi,
I made a little test midlet which works on all phones i have here (6610, 7650, 6230) but not on the 6260. It seems it will not show/start animating a Canvas (not FullCanvas) using code like this :
MyCanvas canvas = new MyCanvas();
Display.getDisplay(this).setCurrent(canvas);
Display.getDisplay(this).callSerially(canvas);
and in MyCanvas:
public void run() {
update();
repaint();
Thread.sleep(5);
Display.getDisplay(midlet).callSerially(this);
}
any known bugs or am i doing something wrong here? (works on ALL other phones, including siemens/motorola etc.)

Reply With Quote

