How can I change the colour of a specific index using JList, I manage to change the colour, but it changes the colour of the whole list and I need to be able to change a specific index to one colour, and another index to another.
I've tried quite a lot of combinations and they seem to only change the whole list colour instead of the index. I understand why because it's referring to the whole list, I just don't know how to change it for a specific index.
m.aList.setCellRenderer(new MyCellRender());
private class MyCellRender extends DefaultListCellRenderer
{
public Component getListCellRendererComponent( JList list,
Object value, int index, boolean isSelected,
boolean cellHasFocus )
{
super.getListCellRendererComponent( list, value, index,
isSelected, cellHasFocus );
ArrayList<Object> values = new ArrayList<>();
ArrayList<String> complete = new ArrayList<>();
ArrayList<String> incomplete = new ArrayList<>();
for (int i = 0; i < list.getModel().getSize(); i++) {
values.add(list.getModel().getElementAt(i));
}
for (Object o : values) {
if (o.toString().contains("COMPLETED")) {
complete.add(o.toString());
}
if (o.toString().contains("INCOMPLETE")) {
incomplete.add(o.toString());
}
}
for (String s : complete) {
setForeground(Color.green);
}
for (String s1 : incomplete) {
setForeground(Color.red);
}
return( this );
}
}
The values in the list contain either COMPLETED, or INCOMPLETE, and I would like to change their colour according to their value.
First off there's no need to keep these three lists:
The ListCellRenderer component is evaluated for each element in the JList so these lists are pointless. You can implement your requirement easily doing as follows:
Take a look to Writing a Custom Cell Renderer section in How to Use Lists trail for further details.