What is the difference between onKey(), OnKeyDown() and dispatchKeyEvent() methods provided by Android?
I Would like to know when and where each of these can be used.
Please shed some light into this.
问题:
回答1:
Tracing the source code of the 5.1 Source for the View Class. It would seem that dispatchKeyEvent()
is the first method called by the system. Overloading it will prevent any and all key events from being called unless the base version is called.
dispatchKeyEvent()
's first move is to attempt to pass the event to an onKeyListener
if there is one. This is when onKey()
is called. If the onKey()
implementation returns true
, dispatchKeyEvent()
will return there and other events will not be called.
If there is no onKeyListener
or the onKeyListener
's onKey()
method returned false
, dispatchKeyEvent()
will then call the KeyEvent
's dispatch()
method. Which will then in turn call all the methods in the KeyEvent.Callback
interface on your view. This includes onKeyDown()
and onKeyUp()
.
回答2:
DispatchKeyEvent Hardware key events are always delivered to the View currently in focus. They are dispatched starting from the top of the View hierarchy, and then down, until they reach the appropriate destination. If your View (or a child of your View) currently has focus, then you can see the event travel through the dispatchKeyEvent() method. In short, dispatchKeyEvent() will be only called if TextView/EditText is in focus.
onKeyDown Called when a key was pressed down and not handled by any of the views inside of the activity