繁体   English   中英

选择jlist项时添加图像

[英]add image when a jlist item is selected

我有疑问。 我不知道我的程序是如何工作的。

import br.com.operacao.Paga;

public class Tela extends JPanel{
    JLabel image;
  public Tela() {

    this.setLayout(new GridBagLayout());


    GridBagConstraints c = new GridBagConstraints();
    c.fill = GridBagConstraints.BOTH; 
    c.insets = new Insets(5, 5, 5, 5); 


    String labels[] = { "Coca-Cola", "Fanta Laranja", "Fanta-Uva", 
     "Sprite"};
    final JList<String> list = new JList<String>(labels);
    list.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
    list.setBorder(BorderFactory.createEmptyBorder(3, 3, 3, 3));
    list.setSelectedIndex(0);


    JScrollPane pane = new JScrollPane();
    pane.getViewport().add(list);
    JPanel firstpanel = new JPanel();
    firstpanel.add(pane);
    firstpanel.setBackground(Color.BLACK);
    c.gridx = 0;
    c.gridy = 0;
    c.gridwidth = 1;
    c.gridheight = 1;
    c.weightx = c.weighty = 0.0;
    this.add(firstpanel,c);

    image = new JLabel();
    image.setFont(image.getFont().deriveFont(Font.ITALIC));
    image.setHorizontalAlignment(JLabel.CENTER);
    updateLabel(labels[list.getSelectedIndex()]); //there is a error here but why?
    image.setBorder(BorderFactory.createEmptyBorder(10,0,0,0));

    c.gridx = 1;
    c.gridy = 0;
    c.gridwidth = 1;
    c.gridheight = 1;
    c.weightx = c.weighty = 0.0;
    this.add(image, c);

    JScrollPane js = new JScrollPane();
    js.setPreferredSize(new Dimension(110,110));
    c.gridx = 0;
    c.gridy = 2;
    c.gridwidth = 3;
    c.gridheight = 1;
    this.add(js, c);

    final JButton comprar = new JButton("Comprar");
    comprar.setEnabled(false);
    list.addListSelectionListener(new ListSelectionListener() {

        public void valueChanged(ListSelectionEvent e) {
            int selections[] = list.getSelectedIndices();
            //String selectedValue = list.getSelectedValue();
            Object selectionValues[] = list.getSelectedValues();
            for (int i = 0, n = selections.length; i < n; i++) {
                if (i == 0) {
           System.out.println("Value" + selectionValues[i] );
                }}
           comprar.setEnabled(true);

        }
    });
    c.gridx = 0;
    c.gridy = 4;
    c.gridwidth = 1;
    c.gridheight = 1;
    this.add(comprar, c);
    comprar.addActionListener(new Paga());

    final JButton confirma = new JButton("Confirmar");
    confirma.setEnabled(false);
    c.gridx = 1;
    c.gridy = 4;
    c.gridwidth = 1;
    c.gridheight = 1;
    this.add(confirma,c);


  }

  public void actionPerformed(ActionEvent e) {

        JList<String> jl = (JList<String>)e.getSource();
        int refriName[] = jl.getSelectedIndices();
        updateLabel(refriName); //what is this error? 
    }
    protected void updateLabel(String name) {
        ImageIcon icon = createImageIcon("images/" + name + ".jpg");
        image.setIcon(icon);
        image.setToolTipText("A drawing of a " + name.toLowerCase());
        if (icon != null) {
            image.setText(null);
        } else {
            image.setText("Image not found");
        }
    }

    /** Returns an ImageIcon, or null if the path was invalid.*/ 
    protected static ImageIcon createImageIcon(String path) {
        java.net.URL imgURL = Tela.class.getResource(path);
        if (imgURL != null) {
            return new ImageIcon(imgURL);
        } else {
            System.err.println("Couldn't find file: " + path);
            return null;
        }
    }

}

我需要在我的gui中添加一个相对于我的jlist中所选项目的图像...但我不知道我的实现中的问题...在我的项目java中有一个文件夹图像和下面的图像。

这是我的计划

你打电话时...

updateLabel(labels[list.getSelectedIndex()]);

在构造函数中,很可能还没有选择,这意味着list.getSelectedIndex()将返回-1不是有效的数组索引...

更好的解决方案可能是将所选索引传递给updateLabel方法并允许它执行一些健全性检查( >= 0 && < lables.length ),例如

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM