如何动态更改在JList中选择的项目的背景颜色?
答案 0 :(得分:20)
以下内容应该有助于作为起点:
public class SelectedListCellRenderer extends DefaultListCellRenderer {
@Override
public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) {
Component c = super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus);
if (isSelected) {
c.setBackground(Color.RED);
}
return c;
}
}
// During the JList initialisation...
jlist1.setCellRenderer(new SelectedListCellRenderer());
答案 1 :(得分:1)
更简单的方法是在Eclipse中进入设计模式,在JList的属性中,单击具有两个小箭头的按钮,中间有一个大的黄色箭头,以打开“显示高级属性”。然后向下滚动并更改其中显示“selectionBackground”的颜色并更改其中的颜色(它可能是灰色的,但它仍然会改变)。现在,当您运行程序时,无论您选择什么,背景都将是该颜色。
答案 2 :(得分:1)
jList1.setSelectedIndex(currentLine);
jList1.setSelectionBackground(Color.red);
只需设置您想要在循环中着色的所有项目的选定索引并更改颜色相应!
答案 3 :(得分:0)
如果我清楚地了解你,请查看javax.swing.ListCellRenderer
。
您需要重新实现它或扩展javax.swing.DefaultListCellRenderer
并自定义getListCellRendererComponent
方法。