我正在尝试制作一款名为Concentration的存储卡匹配游戏。到目前为止,我有3个班级。 内存扩展JFrame实现了ActionListener
Board扩展JPanel实现ActionListener
Cell扩展JButton
到目前为止,我已经实现了一个弹出窗口。使用列表添加成对的单元格类型。在我的董事会中随机分配所有单元格。显示所有单元格的背面(img)(有24个单元格,4行6列)。现在,当我点击我的卡片时,我得到一张白色图片。目前作为一个短期目标,我想要实现的是,当我点击一个按钮时,相应的图像显示在按钮上。我在类Board中以这种方式实现了ActionPerformed。
public void actionPerformed(ActionEvent e){
if(e.getSource() instanceof Cell){
Cell temp = (Cell)e.getSource();
temp.setSelected(true);
if (temp.selected()){
int row = temp.getRow();
int column = temp.getColumn();
board[row][column].setIcon2();
}
}}
我的set selected方法仅用于将Cell类中的布尔变量的值更改为true。 这是我在Cell类中的setIcon2方法。
public void setIcon2(){
ImageIcon x = new ImageIcon();
x = getImageIcon();
setIcon(x);
}
这是Cell类中的getImageIcon方法。
private ImageIcon getImageIcon() {
int temp=0;
int id;
if (localSelected) {
id = getType();
String tempId = Integer.toString(id);
icons[temp] = new ImageIcon("img-" + tempId + ".jpg");
temp++;
return icons[temp];
} else {
id = IMAGE_NUMBER;
String strId = Integer.toString(id);
icons[id] = new ImageIcon("img-" + strId + ".jpg");
}
return icons[id];
}
没有任何类型的编译错误或警告。 getType方法返回与存储在游戏板中的值相关联的整数变量。 (Cell类型的2D数组)。
试图尽可能清楚地解释我的困境,任何形式的方向都将受到高度赞赏和重视。 谢谢 Mjall2
答案 0 :(得分:6)
使用JToggleButton
。更具体地说,使用setIcon
和setSelectedIcon
方法。使用这种方法,你将避免重新发明轮子。
示例 -
import java.awt.FlowLayout;
import javax.swing.JFrame;
import javax.swing.JToggleButton;
import javax.swing.SwingUtilities;
import javax.swing.UIManager;
final class JToggleButtonDemo {
public static final void main(final String[] args) {
SwingUtilities.invokeLater(new Runnable(){
@Override
public void run() {
createAndShowGUI();
}
});
}
private static final void createAndShowGUI(){
final JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLayout(new FlowLayout()); // For presentation purposes only.
final JToggleButton button = new JToggleButton(UIManager.getIcon("OptionPane.informationIcon"));
button.setSelectedIcon(UIManager.getIcon("OptionPane.errorIcon"));
frame.add(button);
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
}
此示例中的切换按钮将在未选中时显示信息图标,在选择时将显示错误图标。