以下代码无效,我将不胜感激。
HorizontalFieldManager hfm = new HorizontalFieldManager();
hfm.setBackground(BackgroundFactory.createSolidTransparentBackground(Color.BLACK, 0));
答案 0 :(得分:1)
您在createSolidTransparentBackground(int color, int alpha)
上使用 0 作为Alpha值。
它将创建一个完全透明的背景(不可见)。检查文档中的alpha值范围。
It says, alpha - 0(清除)到255(不透明)。尝试其他alpha值,例如的 127 强>