1

我正在制作一个应用程序,用户可以在其中向屏幕添加按钮或删除它(我还没有实现这些选项)。所以,现在我用 for() 循环手动填充它并手动删除其中一个按钮。我的问题是,在按钮被移除后(main() 中的移除操作),只有一个空白点。我希望在删除其中一个按钮后能够重新绘制屏幕。在这个例子中,索引 2(块#3)已被删除,留下一个空白空间,它在以前的位置......我不知道如何重新绘制它。我尝试从程序中的不同位置验证或重新绘制,但没有成功。

这是代码(PS我确定我的代码不是完成我想要做的最有效的方法,我正在使用setLayout(null),这不是首选方法,但现在我只是在尝试学习某些东西,然后扩展它以改善我自己和我的代码):

import java.awt.Color;
import java.awt.Dimension;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.ArrayList;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.LineBorder;

class TestApp extends JFrame{
    JFrame frame = new JFrame("Test Program");
    ArrayList<JButton> grid = new ArrayList<JButton>();

    private int w = 14;
    private static int amount = 102;
    private static int counter = 0;

    //Default Constructor (sets up JFrame)
    TestApp(){ 
        frame.setLayout(null);
        frame.setPreferredSize(new Dimension(1186, 880));       
        frame.setDefaultCloseOperation(EXIT_ON_CLOSE);
        frame.setResizable(false);
        paintGrid();
        frame.pack();
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
    }

    public void newWindow()
    {
        JFrame select_win = new JFrame("Selected Frame");
        JPanel select_panel = new JPanel();
        select_panel.setPreferredSize(new Dimension(600, 800));
        select_panel.setBackground(Color.ORANGE);
        select_win.add(select_panel);
        select_win.pack();
        select_win.setResizable(false);
        select_win.setVisible(true);
        select_win.setLocationRelativeTo(null);
    }

    private void paintGrid()
    {   
        for(int i = 0, y = 4; i < ((amount / w) + (amount % w)); i++, y += 104)
        {
            for(int j = 0, x = 4; j < w && (counter < amount); j++, x += 84)
            {
                addBlock(counter, x, y);
                counter++;
            }
        }
    }

    //Adds a block
    private void addBlock(int index, int x, int y){
        int height = 100;
        int width = 80;

        grid.add(new JButton("counter: " + (counter + 1)));
        (grid.get(index)).addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                javax.swing.SwingUtilities.invokeLater(new Runnable() {
                    @Override
                    public void run() {
                        newWindow();
                    }
                });
            }
        });
        (grid.get(index)).setBorder(new LineBorder(Color.BLACK));
        (grid.get(index)).setBackground(Color.YELLOW);
        (grid.get(index)).setVisible(true);
        (grid.get(index)).setBounds(x, y, width, height);

        frame.add(grid.get(index));
    }  

    //Removes a block
    private void removeBlock(int index){
        frame.remove(grid.get(index));
        grid.remove(index);
        amount--;
        counter--;
    }  

    public static void main(String [] args) {
        javax.swing.SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                TestApp app = new TestApp();

                //testing block removal
                app.removeBlock(2);
            }
        });
    }
}
4

2 回答 2

3

正确的方法是: revalidate()

revalidate() 方法通知布局管理器这个组件和它上面的所有父组件都被标记为需要布局。这意味着布局管理器将尝试重新对齐组件。通常在移除组件后使用。

我认为只有在您实际使用 Swing 时您才会知道这一点

于 2013-05-10T00:28:39.423 回答
1

如你所说,不好用NullLayout。要解决您的问题,您只需进行两项更改:

将布局更改为FlowLayout构造函数,如下所示:

 frame.setLayout(new FlowLayout());

setBounds将调用更改为 a setPreferredSize

(grid.get(index)).setPreferredSize(new Dimension(width, height));

现在FlowLayout它将自动对齐您的项目,您无需再担心它。

于 2013-05-09T22:33:10.157 回答