Interface MediaControllerKeyDispatcher
- All Known Implementing Classes:
PauseAdView,PulseAdView
public interface MediaControllerKeyDispatcher
The key dispatcher interface for the Media Controller.
-
Method Summary
Modifier and TypeMethodDescriptionbooleandispatchKeyEvent(android.view.KeyEvent event) Dispatch the key event received by theBrightcoveMediaController.static booleanisDirectionalPadKeyCode(int keyCode) Returns true when the key code is one of the following: -KeyEvent.KEYCODE_DPAD_UP-KeyEvent.KEYCODE_DPAD_DOWN-KeyEvent.KEYCODE_DPAD_CENTER-KeyEvent.KEYCODE_DPAD_RIGHT-KeyEvent.KEYCODE_DPAD_LEFTor false otherwise.
-
Method Details
-
dispatchKeyEvent
boolean dispatchKeyEvent(android.view.KeyEvent event) Dispatch the key event received by theBrightcoveMediaController.- Parameters:
event- the Key Event- Returns:
- True if the event was handled, false otherwise.
- See Also:
-
View.dispatchKeyEvent(KeyEvent)
-
isDirectionalPadKeyCode
static boolean isDirectionalPadKeyCode(int keyCode) Returns true when the key code is one of the following: -KeyEvent.KEYCODE_DPAD_UP-KeyEvent.KEYCODE_DPAD_DOWN-KeyEvent.KEYCODE_DPAD_CENTER-KeyEvent.KEYCODE_DPAD_RIGHT-KeyEvent.KEYCODE_DPAD_LEFTor false otherwise.- Parameters:
keyCode- theKeyEventkey code- Returns:
- true when it is a directional Pad key code
-