I have one autocompleteTextview, where i am loading a string array in to it.. so that i can search the data by typing the firstletter .Now i need to load a list on selecting each item in autocomplete textview .. How is it possble?
this is my autocompletetextview
autocomplete = (AutoCompleteTextView) customView.findViewById(R.id.myautocomplete);
ArrayAdapter<String> adapter = new ArrayAdapter<String>(MainActivity.this,
android.R.layout.simple_dropdown_item_1line, ENTON_WEB);
autocomplete.setAdapter(adapter);
Thanks in advance
next activity
you can search using the string “type” and populate the list…