Package icyllis.modernui.view
Class KeyEvent.DispatcherState
java.lang.Object
icyllis.modernui.view.KeyEvent.DispatcherState
- Enclosing class:
KeyEvent
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidhandleUpEvent(KeyEvent event) Handle key up event to stop tracking.booleanisTracking(KeyEvent event) Return true if the key event is for a key code that is currently being tracked by the dispatcher.voidperformedLongPress(KeyEvent event) Keep track of the given event's key code as having performed an action with a long press, so no action should occur on the up.voidreset()Reset back to initial state.voidStop any tracking associated with this target.voidstartTracking(KeyEvent event, Object target) Start tracking the key code associated with the given event.
-
Constructor Details
-
DispatcherState
public DispatcherState()
-
-
Method Details
-
reset
public void reset()Reset back to initial state. -
reset
Stop any tracking associated with this target. -
startTracking
Start tracking the key code associated with the given event. This can only be called on a key down. It will allow you to see any long press associated with the key, and will result inKeyEvent.isTracking()return true on the long press and up events.This is only needed if you are directly dispatching events, rather than handling them in
.invalid reference
Callback#onKeyDown -
isTracking
Return true if the key event is for a key code that is currently being tracked by the dispatcher. -
performedLongPress
Keep track of the given event's key code as having performed an action with a long press, so no action should occur on the up.This is only needed if you are directly dispatching events, rather than handling them in
.invalid reference
Callback#onKeyLongPress -
handleUpEvent
Handle key up event to stop tracking. This resets the dispatcher state, and updates the key event state based on it.This is only needed if you are directly dispatching events, rather than handling them in
.invalid reference
Callback#onKeyUp
-