未找到 J2ME 图像
我正在开发一个只有简单图像的菜单,
Image x = Image.createImage("numbers.png");
listMenu.append(counter, x);
它在带有 Micro Edition SDK 3 的模拟器上运行良好 但是当我使用诺基亚模拟器 S40 或部署到我的手机 S60 时 它不起作用,它给了我“无法读取数字.png”
任何想法?
I am working on a menu with just simple image
Image x = Image.createImage("numbers.png");
listMenu.append(counter, x);
it's working well on the emulators with the Micro Edition SDK 3
but when I use the Nokia emulator S40 or deploy to my mobile S60
it's not working, it gave me "Cannot read numbers.png"
any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议您将图像放在 MIDlet 根目录的
res
文件夹中。您的createImage()
调用将变为:Image x = Image.createImage("/res/numbers.png");
I recommend you put your images in a
res
folder in your MIDlet's root directory. YourcreateImage()
call then becomes:Image x = Image.createImage("/res/numbers.png");