让一个项目消失

时间:2013-12-09 20:23:51

标签: java swing concurrency jbutton event-dispatch-thread

我有一个应用程序,在进行更改后,会出现一个绿色复选标记,表示更改成功。应用程序有几个可能的更改,我希望能够在2.5秒后使复选标记消失。我尝试了几件事:

panel.add(checkMark);
checkMark.setVisible(true);
panel.remove(checkMark);
checkMark.setVisible(false);

似乎没有任何效果。我添加了一个timer电话,然后是checkMark.setVisible(false),似乎没有任何帮助。

有人可以指出我做错了什么吗?以下是我的代码:

//Create Change Role Button
    final JButton changeRoleBtn = new JButton("Change Role");
    changeRoleBtn.setBounds(50, 500, 150, 30);
    changeRoleBtn.setToolTipText("Changes the role of the User");
    changeRoleBtn.addActionListener(new ActionListener()
    {
        public void actionPerformed(ActionEvent e)
        {
            //Create Success Image
            final ImageIcon i1 = new ImageIcon("/Users/vhaislsalisc/Documents/workspace/Role_Switcher/greenCheck.png");
            final JLabel checkMark = new JLabel(i1);
            checkMark.isOptimizedDrawingEnabled();
            i1.paintIcon(changeRoleBtn, getGraphics(), 400,25); 
            checkMark.setVisible(true);
            try
            {
                timer = new Timer(2000, new ActionListener()
                {

                    @Override
                    public void actionPerformed(ActionEvent e) 
                    {
                        checkMark.setVisible(false);
                        timer.stop();

                    }
                });
                timer.start();

            }
            catch(Exception e5)
            {
                e5.printStackTrace();
                timer.stop();
            }
        }

    });

这是关于计时器的一点。其他代码是相关的,因为它包括我对图形的声明以及如何调用和使用它。

try
            {
                timer = new Timer(2000, new ActionListener()
                {

                    @Override
                    public void actionPerformed(ActionEvent e) 
                    {
                        checkMark.setVisible(false);
                        timer.stop();

                    }
                });
                timer.start();

            }
            catch(Exception e5)
            {
                e5.printStackTrace();
                timer.stop();
            }

2 个答案:

答案 0 :(得分:5)

panel.add(checkMark);
checkMark.setVisible(true);
panel.remove(checkMark);
checkMark.setVisible(false);

在可见GUI中添加/删除组件时,基本代码为:

panel.add(...);
panel.revalidate();
panel.repaint();

默认情况下,所有组件的大小都为零,因此在执行revalidate()之前无需绘制任何内容,revalidate()调用布局管理器为组件提供大小。

所以你会使用上面的代码来显示组件,然后你会启动你的计时器,当计时器触发时你会将它删除。

答案 1 :(得分:0)

panel.repaint();之后添加了checkMark.setVisible(false),它就像一个魅力。

try
            {
                timer = new Timer(1000, new ActionListener()
                {

                    @Override
                    public void actionPerformed(ActionEvent e) 
                    {
                        checkMark.setVisible(false);
                        panel.repaint();
                        timer.stop();

                    }
                });
                timer.start();

            }
            catch(Exception e5)
            {
                e5.printStackTrace();
                timer.stop();
            }