I have an autocompleteedittext that works fine, but not always.
Some times, before it reach the click event after click an item, the application crash and log shows this message
Attempted to finish an input event but the input event receiver has already been disposed.
Fatal signal 11 (SIGSEGV), code 1, fault addr 0x2e0074 in tid 29564 (pic.invoicefull)
I guess I found the problem.
In the text change event, I repopulate the list, and inside that function, it was a DoEvents. I remove it and I can't recreate the crash. I'll keep trying.