Search code examples
androiddrop-down-menuautocompletetextview

AutoCompleteTextView drop down always visible


I want to make my AutoCompleteTextView to always show drop down list. Now it appears only when it is 3 letters written. How can i do that?


Solution

  • AutoCompleteTextView.setThreshold(1);
    

    By default, when threshold is less than or equals 0, a threshold of 1 is applied.