slides :: labGeoQuiz :: bc02
Java Event Delegation Model
- Event Listeners
- - describes the Java event model for Event Listeners. If you know the event model from Java, you know how to program behavior in Android.
- View.OnClickListener
- - a very common Event Listener.
- The Java Event Delegation Model
- - from San Jose State Univeristy describes the architecture of the Java Event Delegation Model.
- Baseball analogy for event model
- - think about an event like a baseball, the event source like the pitcher, the event target like the cather, and the event listener like the hand signals
- Anonymous inner class from StackOverflow
- - see answer that starts with: By an "anonymous class", I take it you mean anonymous inner class.