我创建了以下实现ListSelectionListener接口的类。这个类应该“监听”我创建的JList的选择事件。每次使用时单击此列表的一行,都应更新selected_row值,因此字符串“选择的格式行是......”应该更改。但是,在多次单击行后,select_row值不会更改。任何人都可以为我提供一个解释,并希望,一种方法来做我想要的吗?在此先感谢!!
import java.util.List;
import javax.swing.event.ListSelectionEvent;
import javax.swing.event.ListSelectionListener;
import ee.dobax.portal.CommonPath;
public class FormatListSelectionListener implements ListSelectionListener{
public ContentGenerated content;
private CommonPathList path_list;
private ConfigRenderingDialog dialog;
public FormatListSelectionListener(ConfigRenderingDialog dialog){
content = dialog.content;
path_list = dialog.pathList;
}
public void valueChanged(ListSelectionEvent e) {
int selected_row;
if(e.getValueIsAdjusting() == false){
selected_row = e.getLastIndex();
System.out.println("The format row selected is "+selected_row);
path_list.addFormatListRowSelected(selected_row);
List<CommonPath> list_p = content.getPathList(selected_row);
Object[] path_list_to_array = new Object[list_p.size()];
path_list.getContents().removeAllElements();
for(int x = 0; x < list_p.size(); x++){
path_list_to_array[x] = list_p.get(x);
path_list.getContents().addElement(path_list_to_array[x]);
}
}
}
}
答案 0 :(得分:4)
我在阅读文档时指出ListSelectionEvent
仅告诉您firstIndex
和lastIndex
之间的选择已更改,但不是在哪个方向。一旦您知道发生了更改(ListSelectionEvent
已被触发),您就可以从JList
中读取当前选定的值:
selected_row = ((JList) e.getSource()).getSelectedIndex();
如果用户操作只是取消选择唯一选定的选项,则您需要检查selected_row
是非否定的。
答案 1 :(得分:1)
请您分享将此侦听器附加到JList的代码吗? 它应该是这样的:
list = new JList(listData);
listSelectionModel = list.getSelectionModel();
listSelectionModel.addListSelectionListener(
new FormatListSelectionListener());
答案 2 :(得分:0)
您不想检查e.getValueIsAdjusting()是否为真?因为这应该意味着事件发生了变化。这可能是它工作一次的原因(第一次可能没有变化),之后就不起作用了。
另外我会改变它来说if(e.getValueIsAdjusting())因为它返回一个布尔值。