我使用以下构造根据需要在标签上显示最多3张图片:
TabbedPane
|_ScrollPane
|_Panel with BorderLayout
|_Label with ImageIcon (Placed North)
|_Label with ImageIcon (Placed Center)
|_Panel with BorderLayout (Placed South)
|_Label with ImageIcon (Placed North)
|_Button (Placed West)
|_Button (Placed East)
标签上放置的图像分别为1654 * 2340像素(" null.jpg"是1 * 1像素)
使用另一个标签上的按钮,我可以打印出我认为在测试过程中很重要的各种参数(主要是组件的尺寸/位置)。
如果我使用" null.jpg"作为第三个标签的图片,一切都按预期工作;我看到2张图片和按钮(如果几乎看不到&#34的其他像素; null.jpg") 如果我现在切换到使用另一个1654 * 2340像素图像,一切都变得疯狂:按钮丢失,第三张图片没有显示和(查看附加按钮给出的参数)假设的两个按钮的大小是-2305像素。
尺寸是由第二面板(2340像素)上显示的图像(未)和第二面板(35像素)的高度 - >得到的。 35-2340 = -2305
但是我不知道为什么会发生这种情况,因为使用较小的图像一切都按预期工作。从下面的代码中可以看出,我检查了各种参数,从面板上的标签尺寸到按钮位置和尺寸。
为什么会发生这种情况,我该如何解决?我正在寻找连续4个小时,但却找不到为什么会这样。下面是一个实际重现问题的测试示例代码。取消ImageIcon p3
上的评论并将其放在定义p3
的另一行前面会返回不同的结果。
再次:p1-p3是大小为1654 * 2340像素的图像,其中" null"是1 * 1
如果还需要其他任何东西,我很乐意提供帮助!
非常感谢任何帮助!
package my_package;
import java.awt.EventQueue;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.io.File;
import java.net.MalformedURLException;
public class testsforSO extends JFrame {
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
testsforSO frame = new testsforSO();
frame.setSize(300, 300);
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
public testsforSO() {
getContentPane().setLayout(new BorderLayout(0, 0));
JTabbedPane tabbedPane = new JTabbedPane(JTabbedPane.TOP);
getContentPane().add(tabbedPane);
JPanel panel = new JPanel();
JScrollPane scrollPane = new JScrollPane();
tabbedPane.addTab("Pictures", null, scrollPane, null);
JPanel panel_1 = new JPanel();
scrollPane.setViewportView(panel_1);
panel_1.setLayout(new BorderLayout(0, 0));
JLabel lblNewLabel = new JLabel();
panel_1.add(lblNewLabel, BorderLayout.NORTH);
JLabel lblNewLabel_1 = new JLabel();
panel_1.add(lblNewLabel_1, BorderLayout.CENTER);
JPanel panel_2 = new JPanel();
panel_1.add(panel_2, BorderLayout.SOUTH);
panel_2.setPreferredSize(new Dimension(scrollPane.getWidth(), 35));
panel_2.setLayout(new BorderLayout(0, 0));
JLabel lblNewLabel_2 = new JLabel();
panel_2.add(lblNewLabel_2, BorderLayout.NORTH);
JButton btnNewButton = new JButton("Saving Button");
panel_2.add(btnNewButton, BorderLayout.WEST);
JButton btnNewButton_1 = new JButton("Printing Button");
panel_2.add(btnNewButton_1, BorderLayout.EAST);
try {
ImageIcon p1 = new ImageIcon(new File("C:\\path\\to\\p1.jpg").toURI().toURL());
ImageIcon p2 = new ImageIcon(new File("C:\\path\\to\\p2.jpg").toURI().toURL());
ImageIcon p3 = new ImageIcon(new File("C:\\path\\to\\p3.jpg").toURI().toURL());
//ImageIcon p3 = new ImageIcon(new File("C:\\path\\to\\null.jpg").toURI().toURL());
lblNewLabel.setIcon(p1);
lblNewLabel_1.setIcon(p2);
lblNewLabel_2.setIcon(p3);
} catch (MalformedURLException e) {
e.printStackTrace();
}
JButton btnMyButton = new JButton("Details");
btnMyButton.setBounds(10, 11, 89, 23);
btnMyButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent arg0) {
System.out.println("1 Height"+lblNewLabel.getHeight()+" Y: "+ lblNewLabel.getY());
System.out.println("2 Height"+lblNewLabel_1.getHeight()+" Y: "+ lblNewLabel_2.getY());
System.out.println("3 Width: "+lblNewLabel_2.getSize().getWidth()+" Height: "+lblNewLabel_2.getSize().getHeight());
System.out.println("3 x/y: "+SwingUtilities.convertPoint(lblNewLabel_2, lblNewLabel_2.getLocation(), panel_1).toString());
System.out.println("End of 2: "+(lblNewLabel_1.getY()+lblNewLabel_1.getHeight()));
System.out.println("Panel_2.isVisible: "+Boolean.toString(panel_2.isVisible()));
System.out.println("Panel_2 x/y/w/h: "+panel_2.getX()+" "+panel_2.getY()+" "+panel_2.getWidth()+" "+panel_2.getHeight());
System.out.println("Saving Button x/y/w/h: "+btnNewButton.getX()+" "+btnNewButton.getY()+" "+btnNewButton.getWidth()+" "+btnNewButton.getHeight());}
});
panel.setLayout(null);
panel.add(btnMyButton);
tabbedPane.add("Update Button", panel);
}
}
快速编辑:我没有收到任何异常或编译错误......
答案 0 :(得分:1)
您使用此行限制了包含第三张图片的面板和最大高度为35px的按钮:
panel_2.setPreferredSize(new Dimension(scrollPane.getWidth(), 35));
这足以在图像尺寸为零时显示按钮。但是对于一个大图像,只显示了上部,按钮没有剩余空间。
删除此行将解决您的问题。