如何正确设置已经主题化的 LWUIT Widget 的背景颜色?

发布于 2024-12-02 11:24:43 字数 552 浏览 2 评论 0原文

我尝试了以下代码:

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

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

发布评论

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

评论(1

影子的影子 2024-12-09 11:24:43

尝试将背景透明度设置为不透明: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.

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