我已经成功地使java窗口透明,但我在这些窗口顶部叠加不透明组件时遇到了麻烦。 JFrame.setOpacity(0)和AWTUtilities setWindowOpacity都将透明度传递给组成组件。另外,JFrame.setBackground(0,0,0,0)以某种方式为所述组件渗透透明度。
我该如何解决这个问题?
测试类:透明背景,setOpacity和AWTUtility,分别为
import javax.swing.JFrame;
import javax.swing.JLabel;
import java.awt.Color;
public class test {
public static void main(String[] args){
JFrame frame = new JFrame("test");
JLabel label = new JLabel("Label text");
frame.setUndecorated(true);
frame.setBackground(new Color(0,0,0,128));
frame.add(label);
frame.pack();
frame.setVisible(true);
}
}
public class test2 {
public static void main(String[] args){
JFrame frame = new JFrame("test");
JLabel label = new JLabel("Label text");
frame.setUndecorated(true);
frame.setOpacity(.50f);
frame.add(label);
frame.pack();
frame.setVisible(true);
}
}
import com.sun.awt.AWTUtilities;
import java.lang.reflect.Method;
import java.awt.Window;
public class test3 {
public static void main(String[] args){
JFrame frame = new JFrame("test");
JLabel label = new JLabel("Label text");
frame.setUndecorated(true);
try {
Class<?> awtUtilitiesClass = Class.forName("com.sun.awt.AWTUtilities");
Method mSetWindowOpacity = awtUtilitiesClass.getMethod("setWindowOpacity", Window.class, float.class);
mSetWindowOpacity.invoke(null, frame, Float.valueOf(0.50f));
} catch (Exception x){}
frame.add(label);
frame.pack();
frame.setVisible(true);
}
}
编辑:我在Windows上尝试了setBackground(0,0,0,0),但它在Linux(xfce)上无法正常工作。
答案 0 :(得分:0)
使用AWTUtilties.setOpaque(Window,boolean),你可以得到你想要的。以下是半透明标签(红色背景)的示例:
import java.awt.Color;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.SwingUtilities;
import com.sun.awt.AWTUtilities;
public class Test3 {
protected static void initUI() {
JFrame frame = new JFrame("test");
JLabel label = new JLabel("Label text");
label.setOpaque(true);
label.setBackground(new Color(255, 0, 0, 128));
frame.setUndecorated(true);
AWTUtilities.setWindowOpaque(frame, false);
frame.add(label);
frame.pack();
frame.setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
initUI();
}
});
}
}
以下是alpha chanel(在白色背景上制作)的不同值的屏幕截图:
Alpha设置为128(半透明):
Alpha设置为0(完全透明):
Alpha设置为255(完全不透明):