1

所以,我有一个包含 JPanels 的 ArrayList;所有的 JPanel 都有一个 BorderLayout,在 NORTH 上设置了一个 JPanel(包含两个 JLabel),在 CENTER 上设置了一个 JTextArea(当然包含文本)。我的问题是如何修改每个 JTextArea 的字体大小?

4

1 回答 1

5

这是一些允许JTextArea通过setFontSize(int index, int fontSize)方法设置字体大小的简单代码。请注意,这仅适用于panels数组列表中的文本区域。在以下示例中,我更改了文本区域 #1 和 #3 的字体(请参阅main执行此操作的调用的方法)。

在此处输入图像描述

import java.awt.BorderLayout;
import java.awt.FlowLayout;
import java.awt.Font;
import java.util.ArrayList;

import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextArea;
import javax.swing.SwingUtilities;

public class SimpleFrame extends JFrame {
   ArrayList<JPanel> panels = new ArrayList<JPanel>();

   public SimpleFrame() {
      super("Simple Panel List Example");

      JPanel content = (JPanel)getContentPane();
      content.setLayout(new FlowLayout(FlowLayout.CENTER, 10, 10));

      // add some panels to the array list
      for(int i = 0; i < 5; i++) {
         BorderLayout b = new BorderLayout();
         JPanel p = new JPanel(b);
         JLabel north = new JLabel("Label #"+i);
         JTextArea center = new JTextArea("TextArea #"+i);
         p.add("North", north);
         p.add("Center", center);

         panels.add(p);
         content.add(p);
      }
   }

   // change the font size of the JTextArea on panel #i
   public void setFontSize(int i, int fontSize) {
      JPanel p = panels.get(i);
      JTextArea t = (JTextArea)((BorderLayout)p.getLayout()).getLayoutComponent("Center");
      Font f = t.getFont();
      Font f2 = f.deriveFont((float)fontSize);
      t.setFont(f2);
   }

   public static void main(String[] argv) {
      SwingUtilities.invokeLater(new Runnable() {
         public void run() {
            SimpleFrame c = new SimpleFrame();
            c.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            c.pack();
            c.setVisible(true);

            // we can change the font size using our setFontSize method
            c.setFontSize(1, 8);
            c.setFontSize(3, 16);
         }
      });
   }
}
于 2012-12-31T15:23:24.737 回答