0

現在、ボタンの画像を変更することに基づいて、netbeans を使用して Java プログラムを作成しています。

実際、私の要件は、別のボタンをクリックしたときにボタンの画像アイコンを変更することです(Aと言います).....

私は次のプログラムで出てきました........

       // Following function is included inside the button's (Here A) ActionListener........
       public void change_image()
       {
             if(sex==0)
             {
                   ic=new ImageIcon("E:\\java_images\\female_profile.jpg");
                   sex=1;
             }
             else if(sex==1)
             {
                   ic = new ImageIcon("E:\\java_images\\male_profile.png");
                   sex=0;
             }

              // To resize the image into the size of the button... 
               labelicon.setImage(ic.getImage().getScaledInstance(image_btn.getWidth(),image_btn.getHeight(), Image.SCALE_DEFAULT));

             img_btn.setIcon(labelicon);

         }

私が含めた変数は

           private int sex;    // 0  - female, 1 - male

           private ImageIcon ic,labelicon;  // variables meant for storing ImageIcons.....
           private JButton img_btn;  // the button at which the image is to  be displayed....

今、私が観察した奇妙な行動は......

最小化ボタンをクリックした場合にのみ、ボタンのクリック時に画像が表示されます。つまり、ボタン A をクリックすると、ActionListener で指定されたコードが実行されます。しかし、画像の変更の効果は、ウィンドウを最小化して再度画面に表示した場合にのみ表示されます....なぜこれが起こっているのか、どうすれば問題を解決できるのか誰にもわかりますか??

私が欲しいのは、Aボタンをクリックした瞬間に画像を変更することだけです.....まあ..ボタンを作成するためのコードは含めていません.netbeansのswing GUIビルダーによって簡単に実行できるためです....

4

3 に答える 3

3
  1. 一度ローカル変数としてIcon/をロードすると、イメージを再ロードする理由はありませんImageIconActionListener

  2. APIにImage#ScaledInstanceはかなり非同期の記述があります

  3. それ以外の場合は、電話する必要があります

.

labelicon.getImage().flush();
img_btn.setIcon(labelicon);

編集

@akp が書きましたが..アイコン画像のサイズをどのように変更しますか..??

ここに画像の説明を入力ここに画像の説明を入力ここに画像の説明を入力

Icon /ImageIcon を配置する別の方法が 2 つか 3 つあり、その親でサイズ変更可能になります。JLabel は最も簡単な方法です。

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 JLabel label = new JLabel();
    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");
        button.setBorderPainted(false);
        button.setBorder(null);
        button.setFocusable(false);
        button.setMargin(new Insets(0, 0, 0, 0));
        button.setContentAreaFilled(false);
        button.setLayout(new BorderLayout());
        button.add(label);
        button.addActionListener(new ActionListener() {

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

    private static void startBackground() {
        backTtimer = new javax.swing.Timer(750, 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) {
                label.setIcon(new ImageIcon(getImage()));
            }
        };
    }

    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);
        return bi;
    }
}
于 2012-06-19T06:18:19.243 に答える
2

ここでの問題は、 の内部を更新していることですIcon。このsetIconメソッドは、ボタンが既に持っているアイコンと同じであると考えます。アイコンの更新に使用する2 つの異なるIconオブジェクトを作成することをお勧めします。それは問題を解決します。


例 (2 つの異なるアイコン):

public static void main(String[] args) throws IOException {

    final ImageIcon redIcon = createImageIcon(10, 10, Color.RED);
    final ImageIcon blueIcon = createImageIcon(10, 10, Color.BLUE);

    final JButton button = new JButton("Push", blueIcon);
    button.addActionListener(new ActionListener() {
        @Override
        public void actionPerformed(ActionEvent e) {
            if (button.getIcon() == redIcon)
                button.setIcon(blueIcon);
            else
                button.setIcon(redIcon);
        }
    });

    JFrame frame = new JFrame("Test");
    frame.add(button);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.pack();
    frame.setVisible(true);
}

private static ImageIcon createImageIcon(int w, int h, Color color) {
    Image image = new BufferedImage(w, h, BufferedImage.TYPE_INT_ARGB);
    Graphics g = image.getGraphics(); 
    g.setColor(color); 
    g.fillRect(0, 0, w, h); 
    g.dispose();
    return new ImageIcon(image);
}

バックグラウンド:

のソースをAbstractButton.setIcon見ると、参照が「更新されていない」場合、更新について認識されないことがわかります。

    .....
    if (defaultIcon != oldValue) {
        if (defaultIcon == null || oldValue == null ||
            defaultIcon.getIconWidth() != oldValue.getIconWidth() ||
            defaultIcon.getIconHeight() != oldValue.getIconHeight()) {
            revalidate();
        } 
        repaint();
    }

@HarryJoyに注意してください。理由はわかりませんでしたが、実際にはポイントがありました... :)ごめんなさい!再び+1!

于 2012-06-19T06:20:46.773 に答える
1

//呼び出しimg_btn.revalidate()img_btn.repaint()

訂正、setIcon はすでにこれを行っているはずです。私は個人的にハッキーな方法を使用しimg_btn.setText("<HTML><BODY><IMG SRC=\"/path/to/img.jpg\"/></BODY</HTML>");ます。

于 2012-06-19T06:05:30.753 に答える