※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
※MainCanvasの修正
class MainCanvas extends Canvas {
private Image image;
MainCanvas() {
this.setSoftLabelVisible(false);
try {
MediaImage mi = MediaManager.getImage("resource:///image.gif");
mi.use();
image = mi.getImage();
} catch (ConnectionException e) {}
}
public void paint(Graphics g) {
int w = 32,h = 32;
g.lock();
g.clearRect(0, 0, this.getWidth(), this.getHeight());
for (int i = 0; i < 5; i++) {
for (int j = 0; j < 5; j++) {
g.drawImage(image, i * w, j * h);
}
}
g.unlock(true);
}
}
| << 前へ | 次へ >> |