BetterSpinner
BetterSpinner copied to clipboard
Requires 2 taps to open
when spinner loses focus then requires 2 taps to open list. I found some similar closed issues but no solution.
thank you!
I've fixed this issue in pull request #33 . While we wait for a merge, you can use my fork https://github.com/douglasjunior/BetterSpinner/
A fast solution would be (and it works for me) clear the focus with the OnDismissListener:
mTypes.setOnDismissListener(new AutoCompleteTextView.OnDismissListener() {
@Override
public void onDismiss() {
mTypes.clearFocus();
}
});
Thanks @Fuhrmann, I found that calling setOnItemClickListener made the double click problem occur, but your solution fixes it :)