Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有Label一个Scene。我需要始终为其中的文本获取最大的字体大小,以便文本始终采用标签可用大小的最大大小。
Label
Scene
我怎样才能做到这一点?
final double MAX_FONT_SIZE = 30.0; // define max font size you need label.setFont(new Font(MAX_FONT_SIZE)); // set to Label
我不确定我们是否有办法根据容器的大小设置字体大小。但是您可以垂直或水平缩放文本以适应容器边界。看看以下...
缩放文本框而不截断其中的文本