Flutter Engine
The Flutter Engine
|
Public Member Functions | |
BinaryMessenger | getBinaryMessenger () |
boolean | onTextInputKeyEvent (@NonNull KeyEvent keyEvent) |
void | redispatch (@NonNull KeyEvent keyEvent) |
A set of interfaces that the KeyboardManager
needs to interact with other components and the platform, and is typically implements by FlutterView
.
Definition at line 165 of file KeyboardManager.java.
BinaryMessenger io.flutter.embedding.android.KeyboardManager.ViewDelegate.getBinaryMessenger | ( | ) |
Returns a BinaryMessenger
to send platform messages with.
Implemented in io.flutter.embedding.android.FlutterView, and io.flutter.view.FlutterView.
boolean io.flutter.embedding.android.KeyboardManager.ViewDelegate.onTextInputKeyEvent | ( | @NonNull KeyEvent | keyEvent | ) |
Send a KeyEvent
that is not handled by the keyboard responders to the text input system.
keyEvent | the KeyEvent that should be processed by the text input system. It must not be null. |
Implemented in io.flutter.embedding.android.FlutterView, and io.flutter.view.FlutterView.
void io.flutter.embedding.android.KeyboardManager.ViewDelegate.redispatch | ( | @NonNull KeyEvent | keyEvent | ) |
Send a KeyEvent
that is not handled by Flutter back to the platform.
Implemented in io.flutter.embedding.android.FlutterView, and io.flutter.view.FlutterView.