AutoComplete box dropdown suggestions not showing contains with its showing StartWith.
this is my code
final ArrayList<String> listFilterJob = new ArrayList<>();
listFilterJob.add("Anuj");
listFilterJob.add("Akshay");
listFilterJob.add("Ananta");
listFilterJob.add("Muskan");
listFilterJob.add("sachin");
ArrayAdapter adapterFiltersJob = new ArrayAdapter(this, android.R.layout.simple_list_item_1, listFilterJob);
edtFilterJob.setThreshold(1);
edtFilterJob.setDropDownWidth(350);
edtFilterJob.setAdapter(adapterFiltersJob);
When i type "an" to autocomplete textbox its show result Anuj and Ananta in dropdown list but i want Anuj, Ananta and Muskan. how can i do this, help me.