使用Java Swing中的集合调整JLabel文本大小

问题描述 投票:0回答:1

我正在尝试使用以下代码更改我的JLabel文本大小:

my_font = my_label.getFont();

my_font = my_font.deriveFont(
        Collections.singletonMap(
                TextAttribute.SIZE, TextAttribute.20));

这一行有一个编译器警告:

TextAttribute.20;

此代码完美地工作并更改文本权重:

font_bold = numero_fattura.getFont();

font_bold = font_bold.deriveFont(
        Collections.singletonMap(
                TextAttribute.WEIGHT, TextAttribute.WEIGHT_BOLD));

问题:如何使用相同的代码更改文本大小?

java swing text size jlabel
1个回答
0
投票

据我了解你的问题,你的答案类似于下面所说的线程第一个答案,只需按照这个链接 -

How to change the size of the font of a JLabel to take the maximum size

Font labelFont = label.getFont();
String labelText = label.getText();

int stringWidth = label.getFontMetrics(labelFont).stringWidth(labelText);
int componentWidth = label.getWidth();

// Find out how much the font can grow in width.
double widthRatio = (double)componentWidth / (double)stringWidth;

int newFontSize = (int)(labelFont.getSize() * widthRatio);
int componentHeight = label.getHeight();

// Pick a new font size so it will not be larger than the height of label.
int fontSizeToUse = Math.min(newFontSize, componentHeight);

// Set the label's font size to the newly determined size.
label.setFont(new Font(labelFont.getName(), Font.PLAIN, fontSizeToUse));

希望这对你有所帮助,谢谢。

© www.soinside.com 2019 - 2024. All rights reserved.