Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JAVA search list field

I searched how to do this, but didn't find anything like what. I'm not good in English so I didn't know how this thing is called. Please someone tell me how to create something like this or how this thing is called. Thank you!

enter image description here

like image 245
Rytis Avatar asked Nov 22 '25 02:11

Rytis


1 Answers

The easiest way is to use the SwingX library.

Example:

JComboBox combobox = new JComboBox(new Object[] { "One", "Two",
        "Three", "Four", "Five" });
AutoCompleteDecorator.decorate(comboBox);

If you want to do it yourself, read this: http://www.orbital-computer.de/JComboBox/

like image 93
Lukas Rotter Avatar answered Nov 23 '25 17:11

Lukas Rotter