使用 J2ME-Polish 设置 Midlet 图标
我使用 J2ME Polish 版本 2.0.7 和 ant 来构建我的 Midlet 应用程序。 为了指定应用程序的主类、名称和图标,J2ME Polish 文档 建议我在 build
元素内使用 midlet
元素。
<build usePolishGui="false" >
<midlet name="My Killer App." icon="/logo.png" class="com.foo.MidletMain" />
...
</build>
然而,在生成的 .jad 文件中,当我构建 Midlet 时,仅考虑类名。
MIDlet-1: MidletMain,,com.foo.MidletMain
有人能弄清楚我做错了什么吗?
I'm using J2ME Polish version 2.0.7 together with ant to build my Midlet application. In order to specifcy the main-class, name and icon of the application, the J2ME Polish documentation suggests that I use the midlet
element inside the build
element.
<build usePolishGui="false" >
<midlet name="My Killer App." icon="/logo.png" class="com.foo.MidletMain" />
...
</build>
however in the resulting .jad file only the classname is taken into account when I build my Midlet.
MIDlet-1: MidletMain,,com.foo.MidletMain
Can someone figure out what I'm doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,它必须位于 j2mepolish 目标的信息部分:
No it must be in the info section of the j2mepolish target:
您需要做的是:
你的图标会起作用!
What you will need to do is this:
Your icon would work!