सात साल बाद, दोस्तों, समस्या वही रहती है। यहां एक फ़ंक्शन के साथ एक वर्ग है जो किसी भी स्थिति में खुद को दिखाने के लिए उस बेवकूफ पॉप-अप को मजबूर करता है। आपको बस अपने AutoCompleteTextView पर एक एडाप्टर सेट करना है, उसमें कुछ डेटा जोड़ना है, और showDropdownNow()
कभी भी फ़ंक्शन को कॉल करना है।
क्रेडिट @ वावरा को। यह उसके कोड पर आधारित है।
import android.content.Context
import android.util.AttributeSet
import android.widget.AutoCompleteTextView
class InstantAutoCompleteTextView : AutoCompleteTextView {
constructor(context: Context) : super(context)
constructor(context: Context?, attrs: AttributeSet?) : super(context, attrs)
constructor(context: Context?, attrs: AttributeSet?, defStyleAttr: Int) : super(context, attrs, defStyleAttr)
override fun enoughToFilter(): Boolean {
return true
}
fun showDropdownNow() {
if (adapter != null) {
// Remember a current text
val savedText = text
// Set empty text and perform filtering. As the result we restore all items inside of
// a filter's internal item collection.
setText(null, true)
// Set back the saved text and DO NOT perform filtering. As the result of these steps
// we have a text shown in UI, and what is more important we have items not filtered
setText(savedText, false)
// Move cursor to the end of a text
setSelection(text.length)
// Now we can show a dropdown with full list of options not filtered by displayed text
performFiltering(null, 0)
}
}
}