1

状況に応じて、2 つの異なる imageIcons を選択できる JButton があります。

image1Url = getClass().getResource(filename1);
image2Url = getClass().getResource(filename2);
ImageIcon image1 = new ImageIcon( image1Url , "image1")
ImageIcon image2 = new ImageIcon( image2Url , "image2")

JButton button = new JButton;

//Either image1 or image2 is set to this button depending 
//on whether the user clicks this button or whether the 
//computer sets an image there. The point is that the programme 
//then needs to respond depending upon what the image on the button is.
//I tried using...

if(button.getIcon() ==image1)
{
    //respond appropriately.
}

しかし、これはうまくいきませんでした。これが機能しない理由と、これを解決する別の方法があるかどうかを誰かに説明してもらえますか? おそらく画像の説明を使用できると思いましたが、これを実装する方法がわかりませんでした。ありがとうございました

4

2 に答える 2

4

==参照を比較しているため、 の使用はお勧めしません。もちろん、それはあなたがやろうとしていることです。

最も簡単な方法は、現在使用されているものを決定する値 (たとえば a boolean) を設定ImageIconし、それと比較することだと思います。

編集 申し訳ありませんが、私は実際に質問を誤解しました。説明を使用して比較したい場合は、次のようにします。

String desc = ((ImageIcon)button.getIcon()).getDescription();
if(desc.equals(image1.getDescription())
{
    //descriptions are the same
}
于 2012-11-04T16:14:16.517 に答える
2
  • 私のために働く、別の問題があるに違いない、

  • アイコンがImageIconのインスタンスである必要があり、コードでテストする必要があることを確認してください

import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.util.Random;
import javax.swing.*;

public class JButtonAndIcon {

    private static JButton label = new JButton();
    private static Random random = new Random();
    private static ImageIcon image1; // returns null don't worry about
    private static ImageIcon image2; // returns null don't worry about
    private static Timer backTtimer;
    private static int HEIGHT = 300, WEIGHT = 200;

    public static void main(String[] args) throws IOException {
        label.setPreferredSize(new Dimension(HEIGHT, WEIGHT));
        final JButton button = new JButton("Push");
        label.setBorderPainted(false);
        label.setBorder(null);
        label.setFocusable(false);
        label.setMargin(new Insets(0, 0, 0, 0));
        label.setContentAreaFilled(false);
        //button.setLayout(new BorderLayout());
        //button.add(label);
        button.addActionListener(new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent e) {
                if (label.getIcon() == image1) {
                    label.setIcon(image2);
                } else {
                    label.setIcon(image1);
                }
            }
        });
        JFrame frame = new JFrame("Test");
        frame.add(label);
        frame.add(button, BorderLayout.NORTH);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.pack();
        startBackground();
        frame.setVisible(true);
    }

    private static void startBackground() {
        backTtimer = new javax.swing.Timer(2000, updateBackground());
        backTtimer.start();
        backTtimer.setRepeats(true);
    }

    private static Action updateBackground() {
        return new AbstractAction("Background action") {

            private static final long serialVersionUID = 1L;

            @Override
            public void actionPerformed(ActionEvent e) {
                image1 = new ImageIcon(getImage());
                label.setIcon(image1);
            }
        };
    }

    public static BufferedImage getImage() {
        int w = label.getWidth();
        int h = label.getHeight();
        GradientPaint gp = new GradientPaint(0f, 0f, new Color(
                127 + random.nextInt(128),
                127 + random.nextInt(128),
                127 + random.nextInt(128)),
                w, w,
                new Color(random.nextInt(128), 
                random.nextInt(128), random.nextInt(128)));
        BufferedImage bi = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);
        Graphics2D g2d = bi.createGraphics();
        g2d.setPaint(gp);
        g2d.fillRect(0, 0, w, h);
        g2d.setColor(Color.BLACK);
        g2d.dispose(); // thanks notified by @trashgod
        return bi;
    }
}
于 2012-11-04T16:21:16.427 に答える