java-用于背景图像和文本的布局管理器
作者:互联网
我正在尝试最好的布局管理器来实现下图.我知道绝对定位是我所习惯的,但是我无法使用它来获得背景图像. GridBagLayout非常好,但是当我尝试为每个网格获取单独的图像时,很难做到.
有谁知道一个简单的方法,或者简单的代码来实现以下目标?
解决方法:
您可以通过多种方式实现这一目标.
最简单的方法就是只使用现有的…
如果您不需要在运行时缩放背景(即您可以使用不可调整大小的窗口逃脱),只需使用JLabel作为主要容器,就可以大大简化您的生活.
public class LabelBackground {
public static void main(String[] args) {
new LabelBackground();
}
public LabelBackground() {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception ex) {
}
JFrame frame = new JFrame("Test");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(new LoginPane());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}
public class LoginPane extends JLabel {
public LoginPane() {
try {
setIcon(new ImageIcon(ImageIO.read(getClass().getResource("/background.jpg"))));
} catch (IOException ex) {
ex.printStackTrace();
}
setLayout(new GridBagLayout());
GridBagConstraints gbc = new GridBagConstraints();
gbc.anchor = GridBagConstraints.EAST;
gbc.insets = new Insets(2, 2, 2, 2);
gbc.gridx = 0;
gbc.gridy = 0;
JLabel nameLabel = new JLabel("Name: ");
nameLabel.setForeground(Color.WHITE);
JLabel passwordLabel = new JLabel("Password: ");
passwordLabel.setForeground(Color.WHITE);
add(nameLabel, gbc);
gbc.gridy++;
add(passwordLabel, gbc);
gbc.anchor = GridBagConstraints.WEST;
gbc.gridx++;
gbc.gridy = 0;
add(new JTextField(20), gbc);
gbc.gridy++;
add(new JTextField(20), gbc);
gbc.gridy++;
gbc.insets = new Insets(10, 2, 2, 2);
gbc.anchor = GridBagConstraints.EAST;
add(new JButton("Submit"), gbc);
}
}
}
更新了左对齐示例
在构造函数的末尾,添加…
JPanel filler = new JPanel();
filler.setOpaque(false);
gbc.gridx++;
gbc.weightx = 1;
add(filler, gbc);
您可能想看看How to use GridBagLayout了解更多详细信息
标签:imageicon,gridbaglayout,java,layout,swing 来源: https://codeday.me/bug/20191012/1898964.html