I’m looking for an Android widget that provides the following functionality: I want to get text from the user, and the user can either select from a list of choices or enter their own text.
I’m having a hard time coming up with the right keywords for google. Custom ListView?
If you are looking for the “list of choices” to fold down from the text entry area, then
AutoCompleteTextViewis the widget that you want.Here is a sample project demonstrating its use. You basically hand it an
Adapterfor the stuff to go in the list viasetAdapter(), and use theandroid:completionThresholdattribute to indicate how many characters the user must type in before Android will attempt to find matches and display them.