JButton - 如何断行并在同一按钮中设置两种不同的文本大小?
JButton - How can I break the line and set two different text sizes in the same button?
我想在一个按钮中放置两种文本类型..
上面的是一个大数字,下面的是一个较小的文本。
下面的代码已经换行了,但是我无法操作字体。
String twoLines = "Two\nLines";
JButton b = new JButton("<html>" + twoLines.replaceAll("\n", "<br>") + "</html>");
I want to put two text types in one button. The upper one would be a big number, the lower one wuld be a smaller text.
这只是 html/css 样式的问题。您可以使用包含必要样式的 span 元素围绕要设置样式的文本
JButton button = new JButton("<html>Top<br /><span style=\"font-size: 0.9em\">bottom</span></html>");
或者,您可以使用段落元素创建一个新行,并根据需要设置段落样式。
JButton button = new JButton("<html><p>Top</p><p style=\"font-size:0.9em\">Bottom</p></html>");
我想在一个按钮中放置两种文本类型.. 上面的是一个大数字,下面的是一个较小的文本。 下面的代码已经换行了,但是我无法操作字体。
String twoLines = "Two\nLines";
JButton b = new JButton("<html>" + twoLines.replaceAll("\n", "<br>") + "</html>");
I want to put two text types in one button. The upper one would be a big number, the lower one wuld be a smaller text.
这只是 html/css 样式的问题。您可以使用包含必要样式的 span 元素围绕要设置样式的文本
JButton button = new JButton("<html>Top<br /><span style=\"font-size: 0.9em\">bottom</span></html>");
或者,您可以使用段落元素创建一个新行,并根据需要设置段落样式。
JButton button = new JButton("<html><p>Top</p><p style=\"font-size:0.9em\">Bottom</p></html>");