如何在调整JTextArea大小后调整JScrollPane的大小

时间:2014-12-08 17:20:31

标签: java swing jframe

我的JFrame由三个主要部分组成,顶部滚动窗格的横幅包含一个JTextArea中心和一个底部的JTextField。当我重新调整框架大小时,我会调整JTextArea中的列和行。当框架变大时,JTextArea会在视觉上展开,但会移除滚动条。然后,如果我将框架缩小,则JTextArea保持相同的大小。这是我尝试重新调整JTextArea大小的地方。

    frame.addComponentListener(new ComponentAdapter() {//Waits for window to be resized by user
        public void componentResized(ComponentEvent e) {
            uneditTextArea.setRows(((int)((frame.getHeight()-140)/18.8)));//sets Textarea size based on window size
            uneditTextArea.setColumns(((int)((frame.getWidth()-100)/10.8)));
            frame.revalidate();//refreshes screen

            }
        });

为什么ScrollPane不会重新调整TextField大小的变化。 如果需要,其余代码如下。

  public class window extends JFrame  
 {      
  private static JFrame frame = new JFrame("Lillian");      
  private static JButton inputButton = new JButton("Send");
  private static JTextField editTextArea = new JTextField(46);
  private static JTextArea uneditTextArea = new JTextArea(26,50);


  private static JPanel logoPanel = new JPanel();//Input text window
  private static JPanel itextPanel = new JPanel();//Input text window
  private static JPanel submitPanel = new JPanel();//Submit Button
  private static JPanel bottom = new JPanel();//will contain scrollpane
  private static JPanel middle = new JPanel();//willcontain itextpanel & submitbutton
  private static JPanel otextPanel = new JPanel();//Text Output
public static void runWindow() 
   { 
    ImageIcon logo = new ImageIcon("Lillian_resize.png");//banner
    ImageIcon icon = new ImageIcon("Lillian_icon.png");//application icon

    frame.setIconImage(icon.getImage());
    frame.setSize(660,640);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);    
    frame.setVisible(true);

    logoPanel.setSize(10,10);
    JLabel logoLabel = new JLabel(logo);

    final JScrollPane  scrollPane = new JScrollPane(otextPanel);//adds text to panel will scrollbar    
    scrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);//scrollbar only apears when more text than screen      
    scrollPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);//scrollbar never apears 
    scrollPane.setBorder(BorderFactory.createEmptyBorder());    

    logoPanel.add(logoLabel);
    submitPanel.add(inputButton);
    itextPanel.add(editTextArea);
    otextPanel.add(uneditTextArea); 

    frame.getContentPane().add(logoPanel,"North");
    frame.getContentPane().add(middle);
    frame.getContentPane().add(bottom,"South");

    middle.add(scrollPane,"North");//adds panels to outer panel
    bottom.add(itextPanel, "West");
    bottom.add(submitPanel, "East");

    uneditTextArea.setLineWrap(true);
    uneditTextArea.setWrapStyleWord(true);          
    uneditTextArea.setEditable(false);
    uneditTextArea.setCaretPosition(uneditTextArea.getDocument().getLength());

    frame.revalidate();//refreshes screen
//---------------wait for action------------

    frame.addComponentListener(new ComponentAdapter() {//Waits for window to be resized by user
        public void componentResized(ComponentEvent e) {
            uneditTextArea.setRows(((int)((frame.getHeight()-140)/18.8)));//sets Textarea size based on window size
            uneditTextArea.setColumns(((int)((frame.getWidth()-100)/10.8)));
            frame.revalidate();//refreshes screen

            }
        });

   }
 }

1 个答案:

答案 0 :(得分:1)

不需要使用ComponentListener来调整组件大小。这是您用于动态调整组件大小的布局管理器的工作。

您不应该首先将文本区域添加到JPanel。相反,在使用文本区域时,通常使用以下代码将文本区域直接添加到JScrollPane的视口:

JScrollPane scrollPane = new JScrollPane( textArea );

然后使用以下代码将滚动窗格添加到框架中:

frame.add(scrollPane, BorderLayout.CENTER);

正如您所注意到的,您也不应该使用像#34; Center"这样的硬编码文字。而是使用布局管理器提供的变量。由于您使用的是BorderLayout,因此请使用BorderLayout类中定义的变量。

此外,您不应该使用静态变量来创建GUI。我建议你阅读Layout Manager上的Swing教程中的部分。本教程将为您提供更多信息,示例代码将向您展示如何更好地构建程序,以便您不需要使用静态变量。