Closed GoogleCodeExporter closed 9 years ago
I think it maybe connected with the soft keyboard's return key perhaps? I have
changed the IME options on the keyboard from a "return" key to a "go" key which
executes the middle button of the dialog. Looks like typeText resets the soft
keyboard to show a return key somehow pressing the go key in the process before
typing in the text.....?
Original comment by rizwan.c...@gmail.com
on 7 Jan 2015 at 2:11
This is a known Android bug with dialogs. Sometimes the views shown in the
dialog return incorrect coordinates. The way typeText works is that it asks the
EditText view where it is located, then it clicks the View (to support
Expandable ListViews) before sending the text string. Due to the Android bug
the EditText will sometimes report incorrect coordinates which leads to the
wrong View being clicked which leads to issues similar to yours. Unfortunately
there is nothing we can do about this. In dialogs its advised to use enterText
instead.
Original comment by renasr...@gmail.com
on 9 Jan 2015 at 9:31
Ok many thanks for your reply
Original comment by rizwan.c...@gmail.com
on 9 Jan 2015 at 9:34
Original issue reported on code.google.com by
rizwan.c...@gmail.com
on 7 Jan 2015 at 2:03