aspose file tools
The moose likes Swing / AWT / SWT and the fly likes programmatic change of text item color in JLIst Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Swing / AWT / SWT
Reply Bookmark "programmatic change of text item color in JLIst" Watch "programmatic change of text item color in JLIst" New topic
Author

programmatic change of text item color in JLIst

robyn byrd
Greenhorn

Joined: Oct 26, 2005
Posts: 9
I have a GUI consisting of a JList and JButton. The JList displays text items in black. When an item is selected the background color changes to red. I want to have the color of the selected text change to white when the user clicks on the JButton. In other words, the text color for the (already) selected item should change without requiring the user to click on the text item again. Can you show me how to accomplish this?
Thank you.
Michael Dunn
Ranch Hand

Joined: Jun 09, 2003
Posts: 4632
create a boolean flag (field)

button's actionListener: change flag to true and repaint

listSelectionListener: change flag to false

listRenderer: set foreground
if(isSelected && flag) white
else black
Brian Cole
Author
Ranch Hand

Joined: Sep 20, 2005
Posts: 852
Is JList.setSelectionBackground() not working for you?


bitguru blog
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: programmatic change of text item color in JLIst
 
Similar Threads
How to make JComboBox flash (red color)?
FocusListener
Changing the text colour of JList items
Won't repaint!
problem selecting JList item