I want to implement an autocomplete mechanism for the EditText field, but the autocomplete list comes from the server. I looked at AutoCompleteTextView, but by default it only supports fixed rows.
I'm just talking about the user interface. I will send an HTTP request to my web server and return the JSON result. When I run the request and how to connect it to the user interface?
source
share