我正在放置两张图片。一个应该是背景图片,另一个是棒图的图片。我想在背景前得到棒图。我可以通过插入代码将背景图片放在代码后显示棒图来完成此操作。我想知道是否还有通过在背景代码之后插入简笔图代码来完成同样的事情,所以我可以继续在背景上放置新的JLabel。
有效的代码:
guy.setBounds(0,0,100,100);
panel.add(guy);
backgroundPic.setBounds(0,0,550,550);
panel.add(backgroundPic);
setVisible(true);
我想要的代码:
backgroundPic.setBounds(0,0,550,550);
panel.add(backgroundPic);
guy.setBounds(0,0,100,100);
panel.add(guy);
setVisible(true);
答案 0 :(得分:3)
如果您只担心一个背景图像,那么我建议扩展JPanel,覆盖paintComponent并绘制背景图像。
如果你必须关心几个组件的Z顺序,那么JLayeredPane是你最好的选择。
这是一个显示第一个选项的小片段:
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.Point;
import java.net.MalformedURLException;
import java.net.URL;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.SwingUtilities;
public class Test2 {
private static class PanelWithBackground extends JPanel {
private Image backgroundImage;
private Point backgroundLocation = new Point();
@Override
protected void paintComponent(Graphics g) {
super.paintComponent(g);
if (getBackgroundImage() != null) {
g.drawImage(getBackgroundImage(), backgroundLocation.x, backgroundLocation.y, this);
}
}
public Image getBackgroundImage() {
return backgroundImage;
}
public void setBackgroundImage(Image backgroundImage) {
this.backgroundImage = backgroundImage;
repaint();
}
public Point getBackgroundLocation() {
return backgroundLocation;
}
public void setBackgroundLocation(Point backgroundLocation) {
this.backgroundLocation = backgroundLocation;
repaint();
}
}
protected static void initUI() throws MalformedURLException {
JFrame frame = new JFrame("test");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
PanelWithBackground panelWithBackground = new PanelWithBackground();
panelWithBackground.setLayout(null);
panelWithBackground.setBackgroundImage(new ImageIcon(new URL(
"http://2.bp.blogspot.com/-PqKuKt5mRmc/Tvi-K-4FVVI/AAAAAAAACKg/YwzkME5gGvk/s1600/black+background.jpg")).getImage());
JLabel guy = new JLabel(new ImageIcon(new URL(
"http://www.clipproject.info/Cliparts_Free/Menschen_Free/Clipart-Cartoon-Design-04.gif")));
// Next 2 lines should rather be performed by a LayoutManager
panelWithBackground.setPreferredSize(new Dimension(1024, 768));
guy.setBounds(50, 200, guy.getPreferredSize().width, guy.getPreferredSize().height);
panelWithBackground.add(guy);
frame.add(panelWithBackground);
frame.pack();
frame.setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
try {
initUI();
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
});
}
}
答案 1 :(得分:1)
您可以使用Z顺序来指示组件的呈现顺序:
java.awt.Container.getComponentZOrder(Component)
根据文件:
返回容器内组件的z顺序索引。该 组件在z顺序层次结构中越高,其索引越低。 具有最低z次序索引的组件最后被绘制,最重要的是 其他儿童组件。
参数: comp 正在查询的组件
返回:z顺序 组件索引;如果组件为null,则返回-1 或者不属于容器
答案 2 :(得分:0)
我不会声称自己是一名java专家也不会声称这是正确的,只是一个猜测,但请尝试删除
.setBounds()
如果没有效果,请尝试使用
祝你好运:).setSize()