I have a AutocompleteTextView and it works fine. When I write a word it shows the relevant result but I want to show all items without writing any word in AutocompleteTextVi
I got a great solution to this. It's simple. This is just the drop-down and choosing from the options.
Make sure you add these two lines to XML.
android:completionThreshold="0"
android:focusableInTouchMode="false"
XML
JAVA
area_autocomplete.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
area.showDropDown();
}
});