AutoCompleteTextView not showing any drop down items

前端 未结 5 1598
[愿得一人]
[愿得一人] 2021-01-17 17:31

My XML:



        
5条回答
  •  一个人的身影
    2021-01-17 17:56

    The only working solution after updating adapter and notifying about changes instantly show dropDown is reseting AutoCompleteTextView text again, Kotlin example:

     with(autoCompleteTextView) {
           text = text
      // Place cursor to end   
    }
    

    Java something like:

    autoCompleteTextView.setText(autoCompleteTextView.getText());
    // Place cursor to end  
    

提交回复
热议问题