Created
February 14, 2016 20:53
-
-
Save codenameone/7e4dc757971e460e5823 to your computer and use it in GitHub Desktop.
Simple sample of the AutoCompleteTextField in Codename One
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Form hi = new Form("Auto Complete", new BoxLayout(BoxLayout.Y_AXIS)); | |
AutoCompleteTextField ac = new AutoCompleteTextField("Short", "Shock", "Sholder", "Shrek"); | |
ac.setMinimumElementsShownInPopup(5); | |
hi.add(ac); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sample usage of AutoCompleteTextField.
From the Codename One project