0

您好,我正在尝试制作游戏,我想做的一件基本事情是添加一个带有滚动条的 JTextArea。这是我的代码:

package TestStuff;

import javax.swing.*;

@SuppressWarnings("serial")
public class JTextAreaTest extends JFrame
{
     public static void main(String[] args)
     {
          new JTextAreaTest();
     }

     public JTextAreaTest()
     {
          this.setSize(1500, 600);
          setDefaultCloseOperation(
               JFrame.EXIT_ON_CLOSE);
          this.setLocation(450, 175);
          this.setExtendedState(JFrame.
MAXIMIZED_BOTH);
          this.setTitle("Game Display Test");

          panel1 = new JPanel(null);

          final JTextArea gameDisplay = new JTextArea(
               500, 300);
          gameDisplay.setBounds(424, 300, 500, 300);
          gameDisplay.setBackground(Color.BLACK);

          Font font = new Font ("Verdana", Font.BOLD, 
              14);
          gameDisplay.setFont(font);
          gameDisplay.setForeground(Color.WHITE);

          final JScrollPane displayScroll = new JScrollPane(
               gameDisplay);
          displayScroll.setHorizontalScrollBarPolicy(
               JScrollPane.HORIZONTAL_SCROLLBAR_AS_
                    NEEDED);
          displayScroll.setVerticalScrollBarPolicy(
               JScrollPane.  
               VERTICAL_SCROLLBAR_AS_NEEDED);

          panel1.add(gameDisplay);
          panel1.add(displayScroll);

          setContentPane(panel1);

          this.setVisible(true);
     }
}

当我运行它时一切正常,但是当文本超出 JTextArea 的范围时,滚动条永远不会出现!是的,我知道我使用的是绝对定位(无布局),这很糟糕,但我在游戏中需要它是因为其他原因。提前致谢!(另外,由于某种原因,我无法在我的电脑上连接到这个网站,但我以前用过你们,你们很棒,所以我必须在手机上输入这个。抱歉,如果问题的布局搞砸了,它是电话:P)

4

2 回答 2

2

你打电话时...

panel1.add(gameDisplay);
panel1.add(displayScroll);

您正在有效地删除gameDisplayfrom displayScroll,因为组件只能有一个父级。

它可以正常工作的事实归结为您正在玩弄gameDisplay面板的位置和大小,而不是displayScroll您应该...

利用

panel1.add(displayScroll);

相反,但请确保您只调整和定位displayScroll,因为displayScroll将照顾gameDisplay

于 2013-09-30T03:47:43.887 回答
0

I had a similar problem and the solution was setPreferredSize on the component inside the scrollbar. I was trying to absolute position things inside the scrollbars. Luckily I knew exactly what the size should be. Maybe this is a special case.

final JFrame frame = new JFrame("HelloWorldSwing");
final JPanel panel = new JPanel();
panel.setPreferredSize(PUT SIZE HERE);
panel.setLayout(null);
final JScrollPane scrollPane = new JScrollPane(panel);
frame.getContentPane().add(scrollPane);
于 2017-06-21T01:47:13.733 回答