Rytis
Rytis

Reputation: 99

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

Upvotes: 3

Views: 134

Answers (1)

Lukas Rotter
Lukas Rotter

Reputation: 4188

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/

Upvotes: 3

Related Questions