Java JScrollPane- Multiple components
问题 I'm trying to add 2 images inside the JScrollPane. the first image is a background and the second one overlap the first one. The problem shows only the second image when i run my program! please help ImageIcon ii = new ImageIcon("mini_map.png"); JLabel label1=new JLabel(ii); Icon icon = new ImageIcon("Mg.gif"); JLabel label2 = new JLabel(icon); JScrollPane jsp=new JScrollPane(); jsp.getViewport().add(label1); jsp.getViewport().add(label2 ); 回答1: JViewport is a single-child container, you can