当Icon为空时,JLabel意外的文本对齐行为

时间:2016-06-10 05:19:00

标签: java swing icons jlabel text-alignment

如果图标为空,如何解决JLabel忽略展示位置指令的明显限制?

我有一个使用JLabel的应用程序来显示带有解释性文字的图标但有时JLabel包含纯文本而没有相应的图标。

我在JLabel集上的对齐方式如下:

label5.setHorizontalAlignment(JLabel.CENTER);
label5.setVerticalAlignment(JLabel.TOP);
label5.setHorizontalTextPosition(JLabel.CENTER);
label5.setVerticalTextPosition(JLabel.BOTTOM);
label5.setIconTextGap(-3);

当存在图标时,这一切都完美无缺。上面的图标,下面的文字。

但是,如果Icon为null(因为图标源文件(gif / jpg等)从指定位置丢失或因故意将图标设置为null)则文本不会显示在底部,而是重置到标签的顶部。

我认为这可能是我的负面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源文件时,您将获得所需的结果:

JLabels showing expected behaviour

但如果ICONS为N​​ull,则JLabel不会关注Text Placement参数:

JLables showing unexpected Behaviour

我看到JLabel文档说的是setVerticalTextAlignment:

  

设置标签文字的垂直位置,相对于其图片

但是正如您从上面的屏幕截图中看到的那样,Icon实际上是null,它似乎完全绕过了JLabel位置计算代码。

我在发布此内容之前进行了大量搜索,但未能找到讨论此特定问题的任何地方。

那么,这个问题有一个已知的或简单的解决方案吗?我很确定当我想显示Text时,我可以创建一个 new JLabel,而不是将现有JLabel上的图标设置为Null,而没有图标的新JLabel可能会在所需位置显示文本,但是当旧的对象基本上做什么时,我宁愿不去创建新对象我需要95%的时间。

我还可以创建一个适当大小的透视图标,以保持我的文字在底部,但这似乎有点像黑客。建议?

2 个答案:

答案 0 :(得分:1)

是的,

JLabel的文字位置是相对于图标的。所以,如果它的图标是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);
}

答案 1 :(得分:1)

  

如果图标为空,如何解决JLabel忽略放置指令的明显限制?

您已设置属性以控制文本/图标相对于彼此的方式。

但是,您尚未设置属性来控制文本/图标相对于JLabel本身总空间的方式。

您需要设置文本的水平/垂直对齐方式。

默认值为CENTER,表示文本/图标位于标签空间的中心。

例如:

label1.setVerticalAlignment(JLabel.BOTTOM);
label1.setHorizontalAlignment(JLabel.LEFT);

尝试调整框架大小并查看文本/图标如何保持显示在底部/左侧。

所以你需要考虑两个路线:

  1. 相对于JLabel大小的文本/图标
  2. 相对于彼此的文字/图标。