Which type of model is used by android to handle events. Is it delegation model or event model?
Asked
Active
Viewed 953 times
3 Answers
0
The android system uses the event model. The delegate/ion model is used in code for iOS only.
-
Ok, if it uses event model then why do we use onClickListeners for buttons which doesn't return either true or false for the event to be dispatched to the parent (say a view on which button is added)? – Sunil Jan 08 '13 at 09:53