在midlet中设置背景图片/颜色
我创建了一个使用表单类的应用程序,现在它非常简单,我想设置背景图像或颜色。我搜索了两天,但没有用,如果有人知道分享给我......
I create one application used form class now its very simple,I want set background image or color.I searched over 2 days but no use if any know share to me...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用 LWUIT 创建一个派生自 Form 的类,并在其构造函数中调用 setBgImage。要创建 setBgImage 方法的 Image 对象参数,请使用 Image 类的静态方法。要下载 LWUIT,请转至 http://www.oracle。 com/technetwork/java/javame/javamobile/download/lwuit/index.html
Use LWUIT , create a class which derives from Form and in its constructor call setBgImage. To create the Image object parameter of the setBgImage method use the static methods of the Image class. To download LWUIT go to http://www.oracle.com/technetwork/java/javame/javamobile/download/lwuit/index.html
事实并非如此,如果您使用基于
Form
的 UI,您就会被平台希望呈现 UI 的方式所困扰。如果您需要对 UI 进行更高级别的控制,那么您需要使用 Canvas 从头开始创建自己的 UI。Not really, if you are using
Form
-based UI, you are stuck with how the platform wishes to render your UI. If you need a higher level of control over the UI then you need to roll your own from scratch usingCanvas
.您无法为高级 UI 设置 BGImage 或 BGColor。如果你想这样做,你可以使用 Canvas 或者你可以使用一些第三方 GUI框架。我更喜欢 LWUIT 是最好的 GUI 框架。对于 j2me 应用程序,您可以使用 LWUIT 执行所有操作。
You can't able to set the BGImage or BGColor for high level UI. If you want to do you can use Canvas or you can use some 3rd party GUI frameworks. I preferred LWUIT is the best GUI framework. You can do everything with LWUIT for j2me applications.