BetterSpinner icon indicating copy to clipboard operation
BetterSpinner copied to clipboard

Requires 2 taps to open

Open tzanou opened this issue 8 years ago • 3 comments

when spinner loses focus then requires 2 taps to open list. I found some similar closed issues but no solution.

thank you!

tzanou avatar May 21 '16 10:05 tzanou

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/

douglasjunior avatar May 21 '16 20:05 douglasjunior

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();
        }
});

Fuhrmann avatar Nov 24 '16 23:11 Fuhrmann

Thanks @Fuhrmann, I found that calling setOnItemClickListener made the double click problem occur, but your solution fixes it :)

jdddog avatar May 13 '17 01:05 jdddog