0

出于某种原因,我的滚动条出现了,但它不起作用。假设发生的是使用滚动条滚动文本区域的文本。有人可以解释为什么这不起作用吗?

import java.io.*;
import java.awt.event.*;
import java.awt.*;
import javax.swing.*;

public class App extends JFrame{
    private JPanel paneel;

    public App(){   
        paneel = new AppPaneel();
        setContentPane(paneel);
    }

    public static void main(String args[]){
        JFrame frame = new App();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setSize(400, 400);
        frame.setTitle("Auto Clicker");
        frame.setVisible(true);
    }
}

class AppPaneel extends JPanel{
    private JTextField delayField, xLocation, yLocation;
    private JTextArea listArea;
    private JButton addButton, saveButton, runButton;
    private JScrollPane scroll;

    public AppPaneel(){
        setLayout(null);

        delayField = new JTextField();
        delayField.setBounds(10, 10, 85, 25);
        delayField.setText("delay in ms"); 

        xLocation = new JTextField();
        xLocation.setBounds(105, 10, 85, 25);
        xLocation.setText("X position"); 

        yLocation = new JTextField();
        yLocation.setBounds(200, 10, 85, 25);
        yLocation.setText("Y position");

        addButton = new JButton("Add");
        addButton.setBounds(295, 10, 75, 24);
        addButton.addActionListener(new AddHandler());

        listArea = new JTextArea();
        listArea.setBounds(10, 45, 360, 180);
        scroll = new JScrollPane(listArea);
        scroll.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
        scroll.setBounds(370, 45, 20, 180);

        saveButton = new JButton("Save");
        saveButton.setBounds(10, 230, 85, 24);

        runButton = new JButton("Run (F1)");
        runButton.setBounds(105, 230, 85, 24);
        runButton.addActionListener(new RunHandler());

        add(delayField);
        add(xLocation);
        add(yLocation);
        add(addButton);
        add(listArea);
        add(saveButton);
        add(runButton);
        add(scroll);
    }

    class AddHandler implements ActionListener{
        public void actionPerformed(ActionEvent a){
            listArea.setText(listArea.getText() + delayField.getText() + ",     " + xLocation.getText() + ", " + yLocation.getText() + ", " + "click;" + "\n");
        }
    }

    class RunHandler implements ActionListener{
        private Robot bot;
        private String text;
        int foo = Integer.parseInt("1234");
        public void actionPerformed(ActionEvent b) {
            try{
                text  = listArea.getText();
                bot = new Robot();
                for(String line : text.split("\\n")){
                int delay = Integer.parseInt((line.substring(0, 4)));
                int xpos = Integer.parseInt((line.substring(6, 10)));
                int ypos = Integer.parseInt((line.substring(12, 16)));
                bot.mouseMove(xpos, ypos);
                Thread.sleep(delay);
                bot.mousePress(InputEvent.BUTTON1_MASK);
                bot.mouseRelease(InputEvent.BUTTON1_MASK);
                }
            } 
            catch (AWTException | InterruptedException e){
                e.printStackTrace();
            }
        }
    }
}
4

2 回答 2

3

不要使用 null 布局和 setBounds,因为它会弄乱你的程序。我们一次又一次地告诉人们不要这样做是有原因的——通过设置 JTextArea 的界限,您可以限制它的大小,使其在需要时不会增长。一如既往的解决方案——学习和使用布局管理器。设置 JTextArea 的列和行属性,但不设置其边界、大小或首选大小。

接下来不要这样做:Thread.sleep(delay);在您的 Swing 应用程序中,因为它会使整个应用程序进入睡眠状态。使用 Swing Timer 代替任何延迟。教程可以帮助您使用它。

对于非功能布局示例:

import java.awt.BorderLayout;
import java.awt.GridLayout;
import javax.swing.*;

@SuppressWarnings("serial")
public class App2 extends JPanel {
    private static final int GAP = 5;
    private JTextField textField1 = new JTextField(GAP);
    private JTextField textField2 = new JTextField(GAP);
    private JTextField textField3 = new JTextField(GAP);
    private JTextArea textArea = new JTextArea(15, 30);

    public App2() {
        JPanel topPanel = new JPanel(new GridLayout(1, 0, GAP, GAP));
        topPanel.add(textField1);
        topPanel.add(textField2);
        topPanel.add(textField3);
        topPanel.add(new JButton("Add"));

        textArea.setWrapStyleWord(true);
        textArea.setLineWrap(true);
        JScrollPane scrollPane = new JScrollPane(textArea);
        scrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);

        JPanel bottomPanel = new JPanel(new GridLayout(1, 0, GAP, GAP));
        bottomPanel.add(new JButton("Save"));
        bottomPanel.add(new JButton("Run (F1)"));
        bottomPanel.add(new JLabel(""));
        bottomPanel.add(new JLabel(""));

        setBorder(BorderFactory.createEmptyBorder(GAP, GAP, GAP, GAP));
        setLayout(new BorderLayout(GAP, GAP));
        add(topPanel, BorderLayout.PAGE_START);
        add(scrollPane, BorderLayout.CENTER);
        add(bottomPanel, BorderLayout.PAGE_END);
    }

    private static void createAndShowGui() {
        JFrame frame = new JFrame("Auto Clicker");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.getContentPane().add(new App2());
        frame.pack();
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                createAndShowGui();
            }
        });
    }
}
于 2016-01-21T19:52:29.667 回答
2

你的整个方法都是错误的。您不应该使用空布局。例如:

scroll.setBounds(370, 45, 20, 180);

您将宽度设置为 20。那么您如何期望文本区域以 20 像素显示?这是使用 setBounds(...) 的问题,您使用的随机数没有任何意义。让布局管理器完成它的工作。还:

add(listArea);

问题是一个组件只能有一个父级。您最初使用正确的文本区域创建了 JScrollPane。

但是随后您将文本区域直接添加到框架中,从而将其从滚动窗格中删除,因此滚动面板将不再起作用。

摆脱该语句,只需将滚动窗格添加到框架中。

但是,我不建议您将其用作最终解决方案。我只是想提一下当前的问题,以便您希望了解使用布局管理器的好处,这样您就不会再次尝试共享组件。

正确的解决方案是使用“Community Wiki”所建议的布局管理器。然后布局管理器将确定每个组件的大小和位置,因此您无需担心正确计算像素值。

于 2016-01-21T20:24:20.533 回答