I am new in programming so i can't use databases or anything...
Can You please Help me to do this by The data saved in string.i want TextField
to show predictions like google it the data matches the data already given in string
.
I am new in programming so i can't use databases or anything...
Can You please Help me to do this by The data saved in string.i want TextField
to show predictions like google it the data matches the data already given in string
.
If you'd like a quick solution. Use ControlsFX's autocomplete TextField
(taken from this answer).
TextFields.bindAutoCompletion(textfield,"text to suggest", "another text to suggest");
Just download and add the controlsFX jar
to your build path. Or you could use the maven dependency as in the answer I referenced.