I developed a soft keyboard for Android, and I want to enter text into my own EditText
on the keyboard's main screen.
If I add an EditText
to the keyboard Layout it is not receiving input from the keyboard (Neither if I put it in a Dialog
or a PopupWindow
). Also requestFocus
, setFocusable
, etc are not helping.
The only way an EditText
receives the keyboard input is if I put it in a new Activity
(which is not what I need). AI-Type Keyboard has done this. They allow Google Search from within the keyboard.
Any ideas?
I had the same problem. Immediately after editText VISABILITY change from GONE to VISIBLE, I had to set the focus and display the soft keyboard. I achieved this using the following code:
It works for me with 100ms delay, but failed without any delay or with only a delay of 1ms.
Commented part of code shows another approach, which works only on some devices. I tested on OS versions 2.2 (emulator), 2.2.1 (real device) and 1.6 (emulator).
This approach saved me a lot of pain.