如何在 Netbeans 中为 S40 诺基亚 SDK 设置背景图像?
我正在使用 Netbeans IDE 开发一个在诺基亚设备的 S40 平台上工作的应用程序,我正在开发一个可视化 MIDLET (MIDP 2.1),并且我正在尝试为我的应用程序中的表单设置背景图像。我可以插入一个 imageItem,但它不会像任何其他项目(字符串项目等)一样重叠,因此我无法将其固定在背景中,所有组件都将像图层一样位于其前面。
有什么办法可以为我的表格提供背景吗?
I'm developing an application to work on S40 platform for Nokia devices using Netbeans IDE, I'm working on a visual MIDLET (MIDP 2.1) and I am trying to set a background image for the forms in my application. I can insert an imageItem but it doesn't overlap just like any other item (string item, etc.) so I can't get it to be fixed in the background where all the components will be in front of it like layers.
Is there any way possible to have a background for my Forms?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
表单组件旨在具有平台的本机外观,因此不支持设置背景。您可以使用 Canvas 来实现您自己的自定义组件。或者,您可以使用 UI 库(例如 lwuit )来实现应用程序的 UI。
Form components are meant to have the platform's native look and therefore do not support setting a background. You can use Canvas to implement your own custom components. Or you can use a UI library such as lwuit for implementing your application's UI.