SearchableSpinner
SearchableSpinner copied to clipboard
Spinner with searchable items.
When I click on the android home button (to "minimize" the app) while the SearchableSpinner selection dialog is showing, it triggers a crash. This is the stacktrace I get: ```...
I can't find "**İstanbul**" on list. When I write "**İ**stanbul" or "**I**stanbul" or "**ı**stanbul" it can't find anything, I must write "**i**stanbul". How can I fix that problem?
Hi Mitesh, On multiple times click on spinner the app crash. In SearchableSpinner.java line number 91 change _searchableListDialog.show(scanForActivity(_context).getFragmentManager(), "TAG"); code to if(!_searchableListDialog.isAdded()) { _searchableListDialog.show(scanForActivity(_context).getFragmentManager(), "TAG"); }
I have gone through with every issue open for setSelection() but I didn't find anything works for me.
I want to clear all my textView and Spinner item clear on form submission. Like when i submitted the form textView.setText(""); it is clear the textView like that i want...
How to set listener? its listener always null! ` public void setOnSearchableItemSelectedListener(OnSearchableItemSelectedListener listener) { this.mListener = listener; } public interface OnSearchableItemSelectedListener { void OnSearchableItemSelected(Object item, int position); } private OnSearchableItemSelectedListener...