作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想通过使用 ActionListener 从 JList 获取值。当用户选择索引并且所选索引更新时,我想获取更新后的值。
如何在不按按钮的情况下做到这一点?我想将 ActionListener 添加到我的 JList。
最佳答案
How can i do it without pressing a button? I want to add ActionListener to my JList.
不,您确实不想向 JList“添加 ActionListener”,因为这是不允许的,因为 JList 没有 addActionListener(...)
方法,但您确实需要添加一个监听器,通过查找 JList tutorial 可以轻松找到哪个监听器或JList API 。在那里您会找到最好的选择,ListSelectionListener .
有用的资源:
例如:
import javax.swing.*;
import javax.swing.event.ListSelectionEvent;
import javax.swing.event.ListSelectionListener;
@SuppressWarnings("serial")
public class ListListenerDemo extends JPanel {
private static final String[] LIST_DATA = { "Sunday", "Monday", "Tuesday", "Wednesday",
"Thursday", "Friday", "Saturday" };
private JList<String> list = new JList<>(LIST_DATA);
public ListListenerDemo() {
list.setVisibleRowCount(4);
// add the ListSelectionListener to our JList
list.addListSelectionListener(new MyListListener());
JScrollPane scrollPane = new JScrollPane(list);
add(scrollPane);
}
// here's our ListSelectionListener
private class MyListListener implements ListSelectionListener {
@Override
public void valueChanged(ListSelectionEvent e) {
if (!e.getValueIsAdjusting()) {
JList<String> lst = (JList<String>) e.getSource();
String selection = lst.getSelectedValue();
if (selection != null) {
JOptionPane.showMessageDialog(list, selection, "Selected Item",
JOptionPane.INFORMATION_MESSAGE);
}
}
}
}
private static void createAndShowGui() {
ListListenerDemo mainPanel = new ListListenerDemo();
JFrame frame = new JFrame("ListListenerDemo");
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
frame.getContentPane().add(mainPanel);
frame.pack();
frame.setLocationByPlatform(true);
frame.setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(() -> createAndShowGui());
}
}
关于java - 不使用 JButton 从 JList 获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37642909/
我是一名优秀的程序员,十分优秀!