在我的程序中,我想在我的 JFrame 上使用半透明的白色到透明的渐变来覆盖黄色背景。这工作正常,它需要是白色到透明的,因为我的程序设置如何为用户工作。但是,当我将程序带入大学时(JRE7 到我的 JRE6),渐变从白色变为黑色然后透明......在你开始增加白色的不透明度之前,这还不错......无论如何我可以解决这个问题吗?
这是我的 JFrame 代码顶部的相关代码。
public class DictionaryGUI extends JFrame
{
protected JPanel pGradientPane;
//Interface gradient specification
private Color pInterfaceColour = new Color(255, 245, 62);
protected int iDegreeWhite = 180
protected int iDegreeBlack = 0
DictionaryGUI(int iWidth, int iHeight)
{
/*General definitions*/
super(String.format("French Verb Conjugator - Version %s", MainLauncher.version));
setSize(iWidth, iHeight);
new Menu(this);
this.iWidth = iWidth;
this.iHeight = iHeight;
getContentPane().setBackground(pInterfaceColour);
pGradientPane = new JPanel(new GridBagLayout())
{
private static final long serialVersionUID = 1L;
protected void paintComponent(Graphics pGraphics)
{
Graphics2D pGraphicsGradientRender = (Graphics2D) pGraphics;
pGraphicsGradientRender.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
GradientPaint pGradient = new GradientPaint(0, 0, new Color(255, 255, 255, iDegreeWhite), 0, getHeight(), new Color(0, 0, 0, iDegreeBlack));
pGraphicsGradientRender.setPaint(pGradient);
pGraphicsGradientRender.fillRect(0, 0, getWidth(), getHeight());
super.paintComponent(pGraphics);
}
};
pGradientPane.setOpaque(false);
pGradientPane.setPreferredSize(new Dimension(iWidth - 16, iHeight - 62));
/*components added to pGradientPane here!*/
add(pGradientPane);
}
还有主类:
public class MainLauncher
{
static int iHeight = 400;
static int iWidth = 730;
static String version = "0A3B6";
public static void main(String[] args)
{
try
{
for (LookAndFeelInfo info : UIManager.getInstalledLookAndFeels())
{
if ("Nimbus".equals(info.getName()))
{
UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (Exception e) {e.printStackTrace();}
DictionaryGUI window = new DictionaryGUI(iWidth, iHeight);
window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
window.setLocationByPlatform(true);
window.setVisible(true);
}
JRE6和JRE7之间只是有些区别吗?我也应该将底部颜色设为白色吗?(如果人们想使底部的颜色变暗,是黑色的。)
如果有人需要,我明天可以发布一些屏幕截图......
谢谢杰米
编辑: 我将渐变中的第二种(透明)颜色更改为白色,它解决了问题。但是,我仍然很困惑为什么透明的黑色会在中间透出来?它一定与 JRE7 有关,因为这就是它发生的地方……也许他们改变了渐变透明度的工作方式。有谁知道如何在保持黑色的同时消除这个问题?