I have implemented an autocomplete edit text and it does show suggestions, but i want to achieve a different functionality as well.
Right now, i have a String of countries
private static final String[] COUNTRIES = new String[] {
"Belgium", "France", "Italy", "Germany", "Spain"
};
and i am calling it in my adapter. now when i start to type any country name, my edit text start showing me suggestions, but
what i want is:
Lets say i want to write France 10 times in the edit text so i want my autocomplete edit text to give me suggestion when ever i start typing france it and so on,
but my edit text give me suggestion for only the first word i enter. how can i achieve this, like how can my edit text give me suggestion for every text that i enter?