Java image icon array
How can I make an array of image icons? When I click a JButton
on a different clas开发者_C百科s, the ImageIcon
s should be set to a JLabel
.
ImageIcon[] array
and when clicking the button: label.setIcon(array[i])
in the actionPerformed
method of the corresponding ActionListener
.
Also consider this alternate implementation of Card
.
精彩评论