当 Icon 为 Null 时 JLabel 意外的文本对齐行为
JLabel unexpected Text-Alignment behaviour when Icon is Null
如果图标为空,我如何绕过 JLabel 忽略放置指令的明显限制?
我有一个应用程序使用 JLabel 来显示带有解释性文本的图标,但有时 JLabel 只包含文本而没有相应的图标。
我在 JLabel 上设置了如下对齐方式:
label5.setHorizontalAlignment(JLabel.CENTER);
label5.setVerticalAlignment(JLabel.TOP);
label5.setHorizontalTextPosition(JLabel.CENTER);
label5.setVerticalTextPosition(JLabel.BOTTOM);
label5.setIconTextGap(-3);
当有图标存在时,这一切都完美无缺。上面是图标,下面是文字。
但是,如果图标为空(因为图标源文件(gif/jpg 等)从指定位置丢失或因为图标被故意设置为空),则文本不会显示在底部,而是重置为标签的顶部。
我认为这可能与我的负面 IconTextGap 有一些特殊之处,但我已经能够在标准 Java JLabel 示例程序(来自 www.java2s.com/Code/Java/Swing-JFC/LabelTextPosition.htm)
import java.awt.Container;
import java.awt.GridLayout;
import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.border.Border;
import javax.swing.border.LineBorder;
public class LabelTextPos {
public static void main(String args[]) {
JFrame frame = new JFrame("Label Text Pos");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Container content = frame.getContentPane();
content.setLayout(new GridLayout(2, 2));
Border border = LineBorder.createGrayLineBorder();
Icon warnIcon = new ImageIcon("Warning.gif");
JLabel label1 = new JLabel(warnIcon);
label1.setText("Left-Bottom");
label1.setHorizontalTextPosition(JLabel.LEFT);
label1.setVerticalTextPosition(JLabel.BOTTOM);
label1.setBorder(border);
content.add(label1);
JLabel label2 = new JLabel(warnIcon);
label2.setText("Right-TOP");
label2.setHorizontalTextPosition(JLabel.RIGHT);
label2.setVerticalTextPosition(JLabel.TOP);
label2.setBorder(border);
content.add(label2);
JLabel label3 = new JLabel(warnIcon);
label3.setText("Center-Center");
label3.setHorizontalTextPosition(JLabel.CENTER);
label3.setVerticalTextPosition(JLabel.CENTER);
label3.setBorder(border);
content.add(label3);
JLabel label4 = new JLabel(warnIcon);
label4.setText("Center-Bottom");
label4.setHorizontalTextPosition(JLabel.CENTER);
label4.setVerticalTextPosition(JLabel.BOTTOM);
label4.setBorder(border);
content.add(label4);
frame.setSize(300, 200);
frame.setVisible(true);
}
}
当 ICON 源文件存在时,您会得到想要的结果:
但是如果 ICONS 为 Null,则 JLabel 不会关注 Text Placement 参数:
我看到 JLabel 文档说 setVerticalTextAlignment :
Sets the vertical position of the label's text, relative to its image.
但是从上面的截图可以看出,Icon实际上是空的,它似乎完全绕过了JLabel位置计算代码。
我在发布这篇文章之前进行了很多搜索,但找不到讨论这个特定问题的任何地方。
那么,这个问题有已知的或简单的解决方案吗?我相当确定我可以创建一个 new JLabel我只想显示文本,而不是将现有 JLabel 上的图标设置为 Null,而没有图标的新 JLabel 可能会在所需位置显示文本,但我不想创建新对象当旧的基本上在 95% 的时间里都在做我需要的事情时。
我还可以创建一个适当大小的透明图标,以将我的文本保留在底部,但这又似乎有点麻烦。建议 ?
是的,
JLabel
s 文本位置是相对于图标的。所以,如果它的图标是 null
肯定会居中对齐。如果你想摆脱这个问题,你将不得不设置一个空图标到 JLabel
所需的大小。
您可以使用以下方法创建一个空 Icon
并将 Icon
设置为 JLabel
//use this method to set icon to the label
private void setIcon(JLabel label, Icon icon) {
if (icon == null) {
icon = getEmptyIcon();
}
label.setIcon(icon);
}
//crete an empty icon
private Icon getEmptyIcon() {
BufferedImage bufferedImage = new BufferedImage(24, 24, BufferedImage.TYPE_INT_ARGB);
return new ImageIcon(bufferedImage);
}
How do I get around the apparent limitation of JLabel ignoring placement directives if the icon is null ?
您已设置属性来控制 text/icon 之间的相对关系。
但是,您尚未设置属性来控制 text/icon 相对于 JLabel
本身的总数 space 的关系。
您需要设置文本的 horizontal/vertical 对齐方式。
默认值为CENTER
,这意味着text/icon在标签的space内居中。
例如:
label1.setVerticalAlignment(JLabel.BOTTOM);
label1.setHorizontalAlignment(JLabel.LEFT);
尝试调整框架大小,看看 text/icon 如何保持显示在 bottom/left。
所以你有两个对齐方式需要考虑:
- text/icon 相对于 JLabel 的大小
- text/icon相对于彼此。
如果图标为空,我如何绕过 JLabel 忽略放置指令的明显限制?
我有一个应用程序使用 JLabel 来显示带有解释性文本的图标,但有时 JLabel 只包含文本而没有相应的图标。
我在 JLabel 上设置了如下对齐方式:
label5.setHorizontalAlignment(JLabel.CENTER);
label5.setVerticalAlignment(JLabel.TOP);
label5.setHorizontalTextPosition(JLabel.CENTER);
label5.setVerticalTextPosition(JLabel.BOTTOM);
label5.setIconTextGap(-3);
当有图标存在时,这一切都完美无缺。上面是图标,下面是文字。
但是,如果图标为空(因为图标源文件(gif/jpg 等)从指定位置丢失或因为图标被故意设置为空),则文本不会显示在底部,而是重置为标签的顶部。
我认为这可能与我的负面 IconTextGap 有一些特殊之处,但我已经能够在标准 Java JLabel 示例程序(来自 www.java2s.com/Code/Java/Swing-JFC/LabelTextPosition.htm)
import java.awt.Container;
import java.awt.GridLayout;
import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.border.Border;
import javax.swing.border.LineBorder;
public class LabelTextPos {
public static void main(String args[]) {
JFrame frame = new JFrame("Label Text Pos");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Container content = frame.getContentPane();
content.setLayout(new GridLayout(2, 2));
Border border = LineBorder.createGrayLineBorder();
Icon warnIcon = new ImageIcon("Warning.gif");
JLabel label1 = new JLabel(warnIcon);
label1.setText("Left-Bottom");
label1.setHorizontalTextPosition(JLabel.LEFT);
label1.setVerticalTextPosition(JLabel.BOTTOM);
label1.setBorder(border);
content.add(label1);
JLabel label2 = new JLabel(warnIcon);
label2.setText("Right-TOP");
label2.setHorizontalTextPosition(JLabel.RIGHT);
label2.setVerticalTextPosition(JLabel.TOP);
label2.setBorder(border);
content.add(label2);
JLabel label3 = new JLabel(warnIcon);
label3.setText("Center-Center");
label3.setHorizontalTextPosition(JLabel.CENTER);
label3.setVerticalTextPosition(JLabel.CENTER);
label3.setBorder(border);
content.add(label3);
JLabel label4 = new JLabel(warnIcon);
label4.setText("Center-Bottom");
label4.setHorizontalTextPosition(JLabel.CENTER);
label4.setVerticalTextPosition(JLabel.BOTTOM);
label4.setBorder(border);
content.add(label4);
frame.setSize(300, 200);
frame.setVisible(true);
}
}
当 ICON 源文件存在时,您会得到想要的结果:
但是如果 ICONS 为 Null,则 JLabel 不会关注 Text Placement 参数:
我看到 JLabel 文档说 setVerticalTextAlignment :
Sets the vertical position of the label's text, relative to its image.
但是从上面的截图可以看出,Icon实际上是空的,它似乎完全绕过了JLabel位置计算代码。
我在发布这篇文章之前进行了很多搜索,但找不到讨论这个特定问题的任何地方。
那么,这个问题有已知的或简单的解决方案吗?我相当确定我可以创建一个 new JLabel我只想显示文本,而不是将现有 JLabel 上的图标设置为 Null,而没有图标的新 JLabel 可能会在所需位置显示文本,但我不想创建新对象当旧的基本上在 95% 的时间里都在做我需要的事情时。
我还可以创建一个适当大小的透明图标,以将我的文本保留在底部,但这又似乎有点麻烦。建议 ?
是的,
JLabel
s 文本位置是相对于图标的。所以,如果它的图标是 null
肯定会居中对齐。如果你想摆脱这个问题,你将不得不设置一个空图标到 JLabel
所需的大小。
您可以使用以下方法创建一个空 Icon
并将 Icon
设置为 JLabel
//use this method to set icon to the label
private void setIcon(JLabel label, Icon icon) {
if (icon == null) {
icon = getEmptyIcon();
}
label.setIcon(icon);
}
//crete an empty icon
private Icon getEmptyIcon() {
BufferedImage bufferedImage = new BufferedImage(24, 24, BufferedImage.TYPE_INT_ARGB);
return new ImageIcon(bufferedImage);
}
How do I get around the apparent limitation of JLabel ignoring placement directives if the icon is null ?
您已设置属性来控制 text/icon 之间的相对关系。
但是,您尚未设置属性来控制 text/icon 相对于 JLabel
本身的总数 space 的关系。
您需要设置文本的 horizontal/vertical 对齐方式。
默认值为CENTER
,这意味着text/icon在标签的space内居中。
例如:
label1.setVerticalAlignment(JLabel.BOTTOM);
label1.setHorizontalAlignment(JLabel.LEFT);
尝试调整框架大小,看看 text/icon 如何保持显示在 bottom/left。
所以你有两个对齐方式需要考虑:
- text/icon 相对于 JLabel 的大小
- text/icon相对于彼此。