In my application, I get a 3 "inactive InputConnection" warning (logCat below) every time I do something with the cursor in the EditText field.
This is a warning popup, even if I select another EditText (with the cursor - one EditText) or just click the button or whatever I do with the cursor in EditText. This behavior corresponds to all pages (actions).
Even if I click on any menu button (to go to another page) or the back button with the focus on the EditText field, the same set of warnings appears.
In some cases, when I don't have an EditText, I don't have this problem.
This problem occurs when I try to use a real device (Samsung Note II), but it does not replicate when I try the emulator.
Does anyone have an idea how to deal with this?
LogCat:
11-27 22:23:44.820: W/IInputConnectionWrapper(25490): getSelectedText on inactive InputConnection 11-27 22:23:44.850: W/IInputConnectionWrapper(25490): setComposingText on inactive InputConnection 11-27 22:23:44.850: W/IInputConnectionWrapper(25490): getExtractedText on inactive InputConnection
source share