I have a TextAutoCompleteView, which brings the data from a WebServices and when loading the adapter to make the suggestions, everything works perfectly.
The problem I have when including a space, since it eliminates all possibilities.
Example if I put San Juan
Only take the value "San" when giving space to lose all suggestions
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,android.R.layout.simple_dropdown_item_1line,listaCargada1);
txtbuscar.setThreshold(1);
txtbuscar.setAdapter(adapter);