I'm trying to get my AutocompleteTextview to return all results containing the sub-string provided, however it only returns the results that START with the sub-string provided.
The current result set is
0: "CMPN0004:Gigrig"
1: "CMPN0002:NYDA"
2: "CMPN0003:TEST"
and it correctly performs the autocomplete if I type "CMP", however it does not provide any results if I type "TEST" or "Gigrig"
final AutoCompleteTextView campaignTxt = (AutoCompleteTextView)findViewById(R.id.CampaignTxt);
ArrayAdapter<String> adapter = new ArrayAdapter<String>(TripAddActivity.this,android.R.layout.simple_dropdown_item_1line, campaigns);