onKeyListener not working with soft keyboard (Android)

前端 未结 6 634
太阳男子
太阳男子 2020-11-30 07:07

I am using onKeyListener to get the onKey events. It works fine with the normal keyboard. But it does not work with soft keyboard. I am only able to get onKey events for num

6条回答
  •  广开言路
    2020-11-30 07:26

    I don't believe an OnKeyListener gets called at all with the software keyboard. It has something to do with the software keyboard being an IME device and IME devices possibly being things other than keyboards. It seems to make onKeyListener pretty much useless though, since it only works on phones with hardware keyboards. I worked around this issue recently by using TextWatcher on the EditText field in my Activity instead of using OnKeyListener.

提交回复
热议问题