我试图了解Java摇摆代码。我看到其中使用EmptyBorder的一段代码,但是我不明白它在做什么。我试图注释该部分并在未应用emptyborder的情况下运行,但对我而言并没有显示任何区别。还是我只是错过了UI的一些细微变化?
代码:
EmptyBorder border1 = new EmptyBorder(3, 0, 6, 550);
.....
JLabel pdt = new JLabel();
pdt.setIcon(icon);
pdt.setText("blah blah");
pdt.setIconTextGap(5);
pdt.setBorder(border1);
....
border1在这里做什么。
我可以使用EmptyBorder在FlowLayout中的一组控件之间提供间距吗?
最佳答案
正如我在评论中提到的那样,它只是在要添加的组件周围添加了透明边框,有时效果很难看清,具体取决于您使用的布局管理器,因此在流程布局中会包含一些正在使用的图片(很容易看到对流布局的影响):
这是没有添加边框的流布局:
这是流布局,其中边框的左侧和右侧分别设置为100和300,并且边框应用于第一个标签。
最后是一些代码,供您测试情况如何变化:
import java.awt.FlowLayout;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
public class EmptyBorderShowCase extends JFrame{
private static final long serialVersionUID = 1L;
public EmptyBorderShowCase(){
JPanel displayPanel = new JPanel(new FlowLayout());
final int BOTTOM = 0;
final int LEFT = 100;
final int RIGHT = 300;
final int TOP = 0;
EmptyBorder border1 = new EmptyBorder(TOP, LEFT, BOTTOM,RIGHT );
JLabel firstLabel = new JLabel("FIRST");
firstLabel.setBorder(border1);
JLabel secondLabel = new JLabel("SECOND");
displayPanel.add(firstLabel);
displayPanel.add(secondLabel);
setContentPane(displayPanel);
pack();
setDefaultCloseOperation(EXIT_ON_CLOSE);
setVisible(true);
}
public static void main(String[]args){
new EmptyBorderShowCase();
}
}