Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between onKey(), OnKeyDown() and dispatchKeyEvent() methods provided by Android?

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.

like image 541
Navaneeth Sen Avatar asked Oct 21 '11 07:10

Navaneeth Sen


2 Answers

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().

like image 127
Fr33dan Avatar answered Sep 18 '22 18:09

Fr33dan


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

like image 41
Pawan Maheshwari Avatar answered Sep 21 '22 18:09

Pawan Maheshwari