- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
受到这个问题的启发 JLayeredPane with a LayoutManager我正在尝试让 JLayeredPane 与 GridBagLayout 一起工作。
这是自定义的 LayeredPane 类:
class StackConstraints {
public final int layer;
public final Object layoutConstraints;
public StackConstraints(int layer, Object layoutConstraints) {
this.layer = layer;
this.layoutConstraints = layoutConstraints;
}
}
class LXLayeredPane extends JLayeredPane {
private static final long serialVersionUID = 1946283565823567689L;
@Override
protected void addImpl(Component comp, Object constraints, int index) {
int layer = 0;
int pos = 0;
Object constr = null;
if (constraints instanceof StackConstraints) {
layer = ((StackConstraints) constraints).layer;
constr = ((StackConstraints) constraints).layoutConstraints;
} else {
layer = getLayer(comp);
constr = constraints;
}
pos = insertIndexForLayer(layer, index);
super.addImpl(comp, constr, pos);
setLayer(comp, layer, pos);
comp.validate();
comp.repaint();
}
}
这是一个简单的演示(类似于标准 JLayeredPane 演示,但针对 GridBagConstraints 的使用进行了调整并删除了不必要的内容)。
public class LayeredPaneDemo extends JPanel implements ActionListener {
private final Color[] layerColors = { Color.yellow, Color.magenta, Color.cyan, Color.red, Color.green, Color.blue };
private final JLayeredPane layeredPane;
private final List<JLabel> labels;
private JButton update;
public LayeredPaneDemo() {
setLayout(new BoxLayout(this, BoxLayout.PAGE_AXIS));
labels = new ArrayList<>();
layeredPane = new LXLayeredPane();
layeredPane.setPreferredSize(new Dimension(400, 410));
layeredPane.setBorder(BorderFactory.createTitledBorder("Click to change colors"));
// Add several labels to the layered pane.
layeredPane.setLayout(new GridBagLayout());
for (int i = 0; i < layerColors.length; i++) {
JLabel label = createColoredLabel("Test", layerColors[i]);
labels.add(label);
layeredPane.add(label, new StackConstraints(i, gbc(i)));
}
// Add control pane and layered pane to this JPanel.
add(Box.createRigidArea(new Dimension(0, 10)));
add(createControlPanel());
add(Box.createRigidArea(new Dimension(0, 10)));
add(layeredPane);
}
private GridBagConstraints gbc(int i) {
return new GridBagConstraints(i, i, 2, 2, 0.0, 0.0, GridBagConstraints.CENTER, GridBagConstraints.BOTH,
new Insets(0, 0, 0, 0), 0, 0);
}
// Create and set up a colored label.
private JLabel createColoredLabel(String text, Color color) {
JLabel label = new JLabel(text);
label.setVerticalAlignment(JLabel.TOP);
label.setHorizontalAlignment(JLabel.CENTER);
label.setOpaque(true);
label.setBackground(color);
label.setForeground(Color.black);
label.setBorder(BorderFactory.createLineBorder(Color.black));
label.setPreferredSize(new Dimension(240, 240));
return label;
}
// Create the control pane for the top of the frame.
private JPanel createControlPanel() {
update = new JButton("Update");
update.addActionListener(this);
update.setActionCommand("UPDATE");
JPanel controls = new JPanel();
controls.add(update);
controls.setBorder(BorderFactory.createTitledBorder("Choose Duke's Layer and Position"));
return controls;
}
@Override
public void actionPerformed(ActionEvent e) {
Color prev = labels.get(labels.size() - 1).getBackground();
for (int i = labels.size() - 1; i > 0; --i) {
labels.get(i).setBackground(labels.get(i - 1).getBackground());
labels.get(i).validate();
labels.get(i).repaint();
}
labels.get(0).setBackground(prev);
labels.get(0).validate();
labels.get(0).repaint();
}
private static void createAndShowGUI() {
JFrame frame = new JFrame("LayeredPaneDemo2");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JComponent newContentPane = new LayeredPaneDemo();
newContentPane.setOpaque(true);
frame.setContentPane(newContentPane);
frame.pack();
frame.setVisible(true);
}
public static void main(String[] args) {
javax.swing.SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
createAndShowGUI();
}
});
}
}
我的问题是我添加了 6(六!)个标签,但只显示了 5(五!)个。第 0 个就消失在某个地方。这是什么原因?
编辑:追求背后的最初动机是将一个(部分透明的)组件放在另一个组件之上,就像这个屏幕截图中那样 显示 17:00:09 的标签具有透明背景,并放置在图表组件的顶部。需要 GridBagLayout 才能将其准确放置在图表的顶部中间。
最佳答案
JLayeredPane
是无关紧要的。Darryl.Burke said:
A column (or row) in a GridBagLayout is not well defined unless there is at least one component which occupies only that column (or row). All your rows have components spanning 2 columns.
import java.awt.*;
import java.awt.event.*;
import java.util.ArrayList;
import java.util.List;
import javax.swing.*;
import javax.swing.table.*;
public class LayeredPaneDemo2 extends JPanel implements ActionListener {
private final Color[] layerColors = {
Color.yellow, Color.magenta, Color.cyan,
Color.red, Color.green, Color.blue };
private final JLayeredPane layeredPane;
private final List<JLabel> labels;
private JButton update;
public LayeredPaneDemo2() {
setLayout(new BoxLayout(this, BoxLayout.PAGE_AXIS));
labels = new ArrayList<>();
// JLayeredPane is not much related, it is a problem of how to use GridBagLayout.
layeredPane = new LXLayeredPane();
layeredPane.setPreferredSize(new Dimension(400, 410));
layeredPane.setBorder(BorderFactory.createTitledBorder(
"Click to change colors"));
// Add several labels to the layered pane.
layeredPane.setLayout(new GridBagLayout());
for (int i = 0; i < layerColors.length; i++) {
JLabel label = createColoredLabel("Test" + i, layerColors[i]);
labels.add(label);
layeredPane.add(label, new StackConstraints(i, gbc(i)));
}
// //TEST1: Create reference grid
// GridBagConstraints c = new GridBagConstraints(
// 0, 0, 1, 1, 0.0, 0.0, GridBagConstraints.CENTER,
// GridBagConstraints.BOTH, new Insets(0, 0, 0, 0), 0, 0);
// for (int i = 0; i < layerColors.length + 1; i++) {
// c.gridx = i;
// c.gridy = i;
// layeredPane.add(Box.createRigidArea(new Dimension(20, 20)), c);
// }
//TEST2: Create reference grid >>>
GridBagConstraints c = new GridBagConstraints(
6, 6, 1, 1, 0.0, 0.0, GridBagConstraints.CENTER,
GridBagConstraints.BOTH, new Insets(0, 0, 0, 0), 0, 0);
for (int i = 0; i < layerColors.length; i++) {
c.gridx = i;
Component box = Box.createRigidArea(new Dimension(20, 20));
((JComponent) box).setBorder(BorderFactory.createLineBorder(Color.RED));
layeredPane.add(box, c);
}
c.gridx = 6;
for (int i = 0; i < layerColors.length; i++) {
c.gridy = i;
Component box = Box.createRigidArea(new Dimension(20, 20));
((JComponent) box).setBorder(BorderFactory.createLineBorder(Color.RED));
layeredPane.add(box, c);
}
// <<<
// Add control pane and layered pane to this JPanel.
add(Box.createRigidArea(new Dimension(0, 10)));
add(createControlPanel());
add(Box.createRigidArea(new Dimension(0, 10)));
add(layeredPane);
}
private GridBagConstraints gbc(int i) {
return new GridBagConstraints(
i, i, 2, 2, 0.0, 0.0, GridBagConstraints.CENTER,
GridBagConstraints.BOTH, new Insets(0, 0, 0, 0), 0, 0);
}
// Create and set up a colored label.
private JLabel createColoredLabel(String text, Color color) {
JLabel label = new JLabel(text) {
@Override protected void paintComponent(Graphics g) {
g.setColor(new Color(100, 100, 100, 100));
g.fillRect(0, 0, getWidth(), getHeight());
super.paintComponent(g);
}
};
label.setVerticalAlignment(JLabel.TOP);
label.setHorizontalAlignment(JLabel.CENTER);
label.setOpaque(true);
label.setBackground(color);
label.setForeground(Color.black);
label.setBorder(BorderFactory.createLineBorder(Color.black));
label.setPreferredSize(new Dimension(240, 240));
return label;
}
// Create the control pane for the top of the frame.
private JPanel createControlPanel() {
update = new JButton("Update");
update.addActionListener(this);
update.setActionCommand("UPDATE");
JPanel controls = new JPanel();
controls.add(update);
controls.setBorder(BorderFactory.createTitledBorder(
"Choose Duke's Layer and Position"));
return controls;
}
@Override
public void actionPerformed(ActionEvent e) {
Color prev = labels.get(labels.size() - 1).getBackground();
for (int i = labels.size() - 1; i > 0; --i) {
labels.get(i).setBackground(labels.get(i - 1).getBackground());
labels.get(i).validate();
labels.get(i).repaint();
}
labels.get(0).setBackground(prev);
labels.get(0).validate();
labels.get(0).repaint();
}
private static void createAndShowGUI() {
JFrame frame = new JFrame("LayeredPaneDemo2");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JComponent newContentPane = new LayeredPaneDemo2();
newContentPane.setOpaque(true);
frame.setContentPane(newContentPane);
frame.pack();
frame.setVisible(true);
}
public static void main(String[] args) {
javax.swing.SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
createAndShowGUI();
}
});
}
}
class StackConstraints {
public final int layer;
public final Object layoutConstraints;
public StackConstraints(int layer, Object layoutConstraints) {
this.layer = layer;
this.layoutConstraints = layoutConstraints;
}
}
class LXLayeredPane extends JLayeredPane {
@Override
protected void addImpl(Component comp, Object constraints, int index) {
int layer = 0;
int pos = 0;
Object constr = null;
if (constraints instanceof StackConstraints) {
layer = ((StackConstraints) constraints).layer;
constr = ((StackConstraints) constraints).layoutConstraints;
} else {
layer = getLayer(comp);
constr = constraints;
}
pos = insertIndexForLayer(layer, index);
super.addImpl(comp, constr, pos);
setLayer(comp, layer, pos);
comp.validate();
comp.repaint();
}
}
关于java - JLayeredPane 和 GridBagConstraints,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42413590/
我希望我的多行标签右对齐...不知道为什么这这么困难。我尝试使用weightx并添加一个空白jlabel并赋予其权重1.0。我无法让它发挥作用。这个想法是一个人全部左对齐,另一个人右对齐。 (有点像短
请看下面这张图片: 如您所见,“添加程序”、“删除程序”、“添加新单元”和“删除单元”与前面的按钮重叠。 之前的按钮放置在 (0,9) 处,指定的按钮放置在 (0,10) 处。 这是代码: impor
我需要使用 GridBagLayout 但出现以下错误。你能帮忙吗? java.lang.IllegalArgumentException: cannot add to layout: constra
如何填充感兴趣的网格单元中可用的垂直和水平空间? 例如: JTextArea file1 = new JTextArea(); file1.setBorder(BorderFactory.create
此代码生成三个按钮。按钮“一”出现在“北”并部分覆盖位于东的按钮“二”。按钮三出现在西南方。如何获得按钮 1 和 2 重叠但没有按钮 3 的相同布局? import java.awt.Componen
我有点困惑,是否可以有多个 GridBagConstraints? 我有两个使用 GridBagLayout 的面板,它们都受到相同约束的影响。在将较小的组件放在较大的组件旁边时,这给我带来了一个问题
我遇到异常:java.lang.IllegalArgumentException: cannot add to layout: constraints must be a GridBagConstra
使用 GridBagLayout,我尝试这样安排我的组件: 但是组件变成了这样,所有的东西都混在一起了: 我以前从未使用过GridBagConstraints 字段gridwidth 和gridhei
这就是我想要的结果: 但这就是我得到的: 现在,我了解 GridBagConstraints.HORIZONTAL; 允许组件水平占据任何空白空间,但我不确定如何让组件仅填充其网格空间的剩余量。这是我
我对 Swing 编程有些陌生,我发现尽管我很喜欢 GridBagLayout 的强大功能,但如果您有很多组件,就会有很多代码行来设置布局。除了使用可视化编辑器之外,还有什么好的方法可以控制这种情况?
我目前已使用以下代码创建了一个 JFrame。我希望三个 JLabel 一个在另一个之上,它们相应的 JTextFields 在右侧,四个 JButtons 在它们下面(我最终将使用插图将它们分开)。
我正在尝试如下对齐我的组件: 但目前他们是这样的: 这两个组件位于使用 FlowLayout 的 JPanel 上(构造函数包含 FlowLayout.LEFT)。第一个组件具有以下网格包约束: Gr
这个问题已经有答案了: How to set an image as a background for Frame in Swing GUI of java? (8 个回答) 已关闭 3 年前。 我得
我正在尝试创建一个表单,但在使用 GridBagConstraints 时遇到困难。当我设置gridy时,它似乎不起作用。这是我的代码: thisWindow = new GridBagConstra
我是 Java Swing 的新手,正在开发一个项目来帮助我更加熟悉它。我注意到在更改标签文本时, GridBagLayou 中的单元格增加/减少(您可以通过边界线大小调整来判断)。我想知道是否有办法
为什么我的按钮约束不起作用?我查看了 Java 文档,并且正在做与教程相同的事情,但对我来说,无论我使用什么 gridx、y、宽度或填充,按钮都保持不变。有任何想法吗?这是我的代码: class My
我制作了一个自定义组件,以便可以显示图像等,但它拒绝正确使用 anchor 并在顶部居中。有人有解决办法吗?另外,如果有人能给我指出一个更简单的布局,我可能会切换,但我已经使用了大量的 GridBag
我正在设置一个面板,并且正在使用 GridBagLayout。但是,当我设置面板时,标签没有按照我想要的方式排列(我希望它们像统计表一样阅读)。旋转标签应该显示在最左侧,但它们显示在中间。我的代码中是
我有几种方法可以在 JPanel 中创建自己的组件 JButton 或 JLabel。然后我有一个单独的方法,它将所有这些 JPanels 添加到 JFrame 中。我还在 JPanel 上使用 gr
我发现很多帖子讨论如何使用 GridBagLayout,但它们总是与我需要的相反。 例如,在this post中它们的顶行按钮跨越宽度,而其下方只有一个按钮。我的兴趣主要是前两行。 但考虑相反的情况,
我是一名优秀的程序员,十分优秀!