如何删除jtextfield,jbutton和raisedbevel边框之间的空格

时间:2016-01-16 02:42:17

标签: java swing jtextfield border-layout jpasswordfield

我想删除在JButton边框内添加的JTextfieldraisedbevel之间的空格或边框空格 我试过这段代码,但它们之间仍有差距

import java.awt.*; 
import javax.swing.*;
import javax.swing.border.Border;

public class Main {
  public static void main(String args[]) {
    JFrame f = new JFrame("JPasswordField  ");
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    JPanel p=new JPanel(),pp=new JPanel();
    JButton b=new JButton("o");

b.setBorder(null);
b.setBorderPainted(false);
b.setMargin(new Insets(0,0,0,0));
 Border emptyBorder = BorderFactory.createEmptyBorder();
    b.setBorder(emptyBorder);
    Border  raisedbevel=BorderFactory.createRaisedBevelBorder();


    pp.setBorder(raisedbevel);
    JTextField t=new JTextField(20);
    t .setBorder(javax.swing.BorderFactory.createEmptyBorder());
    t.setPreferredSize(new Dimension(100, 25));
    b.setPreferredSize(new Dimension(25, 25));
    pp.setBackground(Color.black);
    pp.add(t);

     pp.add(b);


     p.add(pp);
    f.add(p);
    f.setSize(400, 100);
    f.setVisible(true);


  }
}

我想彻底删除那个黑色空间 感谢。

1 个答案:

答案 0 :(得分:1)

JPanel默认情况下使用FlowLayout,默认情况下使用5的填充,垂直和horitzontially。

如果您想继续使用FlowLayout,可以使用类似的内容指定所需的填充...

pp = new JPanel(new FlowLayout(FlowLayout.CENTER, 0, 0);

或使用其他布局管理器,例如GridBagLayout

我也不鼓励您一般使用setPreferredSize并依赖Border和布局来影响组件的可能性"额外& #34;大小超出其默认首选大小

查看Laying Out Components Within a ContainerHow to Use FlowLayoutHow to Use GridBagLayoutShould I avoid the use of set(Preferred|Maximum|Minimum)Size methods in Java Swing?