Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add and remove an icon on a JLabel

hi i have a label that i have set a icon for it, i want to remove this icon after clicking on a button, what is the method for it?

like image 439
samuel Avatar asked Feb 10 '10 09:02

samuel


2 Answers

// Create icon
Icon icon = new ImageIcon(getClass().getResource("/foo/bar/baz.png"));

// Create label
final JLabel lbl = new JLabel("Hello, World", icon, JLabel.LEFT_ALIGNMENT);

// Create button
JButton btn = new JButton("Click Me");
btn.addActionListener(new ActionListener() {
  public void actionPerformed(ActionEvent evt) {
    // Remove icon when button is clicked.
    lbl.setIcon(null);

    // **IMPORTANT** to call revalidate() to cause JLabel to resize and be repainted.
    lbl.revalidate();
  }
});
like image 52
Adamski Avatar answered Sep 25 '22 12:09

Adamski


label.setIcon(null) 

in the event handler that handles the button click, if you're using Swing.

like image 30
ndeuma Avatar answered Sep 21 '22 12:09

ndeuma