未找到 J2ME 图像

发布于 2024-10-21 08:25:35 字数 235 浏览 4 评论 0原文

我正在开发一个只有简单图像的菜单,

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

窗影残 2024-10-28 08:25:35

我建议您将图像放在 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. Your createImage() call then becomes:

Image x = Image.createImage("/res/numbers.png");

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文