如何正确设置已经主题化的 LWUIT Widget 的背景颜色?
我尝试了以下代码:
final Container root = getRootAncestor(c);
TextArea resultBox = findResultBox(root);
Style style = resultBox.getUnselectedStyle();
style.setBgImage(null);
style.setBgColor(0x00ff00);
style.setFgColor(0xff0000);
resultBox.setUnselectedStyle(style);
resultBox.setSelectedStyle(style);
有效的只是字体/前景色,但是背景颜色仍然存在(它仍然使用主题中的背景图像)。我也尝试过:
style.setBackgroundType(Style.BACKGROUND_IMAGE_SCALED);
style.setBgImage(Image.createImage(1, 1, 0x00ff00));
但这也行不通。
使用 LWUIT 1.5。
I tried the following code:
final Container root = getRootAncestor(c);
TextArea resultBox = findResultBox(root);
Style style = resultBox.getUnselectedStyle();
style.setBgImage(null);
style.setBgColor(0x00ff00);
style.setFgColor(0xff0000);
resultBox.setUnselectedStyle(style);
resultBox.setSelectedStyle(style);
What works is only the font/foreground color, however the background color persists (it still uses the background image from the theme). I also tried:
style.setBackgroundType(Style.BACKGROUND_IMAGE_SCALED);
style.setBgImage(Image.createImage(1, 1, 0x00ff00));
But this also doesn't work.
Using LWUIT 1.5.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将背景透明度设置为不透明:255。有可能颜色只是透明的。创建 bgImage 会覆盖颜色设置,因此请确保图像设置为 null。
Try setting the background transparency to opaque: 255. Its possible that the color is just transparent. Creating a bgImage overrides color settings so make sure the image is set to null.