如何设置列表中的所有JLabel以更改显示的内容

时间:2011-12-06 11:59:22

标签: java swing list jbutton jlabel

固定

我很抱歉这个糟糕的头衔,但我花了5分钟,不能说得更好抱歉。

我需要拥有它,这样如果你全部按下JButton,它会在all2中获取图像并将其放入JLabel标签(用列表制作)

我将JLabel all2放在map()之上,因为如果我没有,“ImageIcon setAll无法解析”。我没有将JLabel标签放在map()之上,因为它与列表listofLabels创建的100个JLable一起混乱。它所展示的只是一个标签。enter image description here enter image description here

public class mapMaker {

ArrayList<JLabel> listofLabels = new ArrayList<JLabel>(100);
ImageIcon forest = new ImageIcon("resources/terrains/forest.jpg");
ImageIcon wood = new ImageIcon("resources/terrains/wood.jpg");

JFrame frame = new JFrame("D&D");
JLabel all2=new JLabel( wood);



public map() {
    int a=0,b=50;
    JFrame.setDefaultLookAndFeelDecorated(true);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setBounds(100,0,1000,700);
    frame.getContentPane().setLayout(null);
    frame.setVisible(true);


    JButton all=new JButton("Set All To");
    frame.getContentPane().add(all);
    all.setBounds(600,450,150,50);
    all.setFont(new Font("Courior", Font.BOLD, 25));
    all.addActionListener(boardListener);

    frame.getContentPane().add(all2);
    all2.setBounds(800,450,50,50);
     all.addActionListener(boardListener);


for ( i = 0; i < 100; i++) {
    JLabel label =new JLabel(forest);    
    label.setIcon(forest);
        listofLabels.add(label);
        a=a+50;
        if(a>549) {
            b=b+50;
            a=50;
        }
        frame.getContentPane().add(label);
        label.setBounds(a, b, 50,50);
        label.setTransferHandler(new TransferHandler("icon"));


            }
}


ActionListener boardListener = new ActionListener (){
    public void actionPerformed(ActionEvent e){
ImageIcon setAll=(ImageIcon) all2.getIcon();

![enter image description here][2]label.setIcon(setAll);



    }
    };;

public static void main(String[]args) {
    new map();
}

}

2 个答案:

答案 0 :(得分:2)

为什么不简单地遍历JLabel的数组(或ArrayList),将所有JLabel的图标设置为所选的一个?

例如:

ActionListener boardListener = new ActionListener() {
  public void actionPerformed(ActionEvent e) {
     if (e.getActionCommand().equals("Set All To")) {
        ImageIcon setAll = (ImageIcon) all2.getIcon();
        for (JLabel label : listofLabels) {
           label.setIcon(setAll);
        }
     }
  }
};

答案 1 :(得分:2)

我不确定这是你所期待的:

ActionListener boardListener = new ActionListener() {
    public void actionPerformed(ActionEvent e) {
        if (e.getActionCommand().equals("Set All To")) {
          Icon setAllIcon = all2.getIcon();

          for (JLabel label : listofLabels)
            label.setIcon(setAllIcon);
        }
    }
};;

编辑工作正常,因为提到的代码中有轻微的错误:

而不是:

all.addActionListener(boardListener);

frame.getContentPane().add(all2);
all2.setBounds(800,450,50,50);
 all.addActionListener(boardListener);

看起来你想要这样做:

all.addActionListener(boardListener);

frame.getContentPane().add(all2);
all2.setBounds(800,450,50,50);
all2.addActionListener(boardListener); // This is the changed line