こんにちは、JButton の Action リスナーを実装しようとしています。コードは次のようになります。
ImageIcon imageForOne = new ImageIcon(getClass().getResource("resources//one.png"));
one = new JButton("",imageForOne);
one.setPreferredSize( new Dimension(78, 76));
one.addActionListener(myButtonHandler);
上記の JButton を使用すると問題なく表示されます
たとえば、ボタンに特定の値を追加すると
ImageIcon imageForOne = new ImageIcon(getClass().getResource("resources//one.png"));
//Check this
one = new JButton("one",imageForOne);
one.setPreferredSize( new Dimension(78, 76));
one.addActionListener(myButtonHandler);
次の画像のようになります
これを回避して値を設定する方法はありますか。
事前にご協力いただきありがとうございます。