Package io.flutter.embedding.android
Class KeyboardManager
- java.lang.Object
-
- io.flutter.embedding.android.KeyboardManager
-
- All Implemented Interfaces:
InputConnectionAdaptor.KeyboardDelegate
public class KeyboardManager extends Object implements InputConnectionAdaptor.KeyboardDelegate
Processes keyboard events and cooperate withTextInputPlugin.Flutter uses asynchronous event handling to avoid blocking the UI thread, but Android requires that events are handled synchronously. So when the Android system sends new @{link KeyEvent} to Flutter, Flutter responds synchronously that the key has been handled so that it won't propagate to other components. It then uses "delayed event synthesis", where it sends the event to the framework, and if the framework responds that it has not handled the event, then this class synthesizes a new event to send to Android, without handling it this time.
Flutter processes an Android
KeyEventwith several components, each can choose whether to handled the event, and only unhandled events can move to the next section.- Keyboard: Dispatch to the
KeyboardManager.Responders simultaneously. After all responders have responded (asynchronously), the event is considered handled if any responders decide to handle. - Text input: Events are sent to
TextInputPlugin, processed synchronously with a result of whether it is handled. - "Redispatch": If there's no currently focused text field in
TextInputPlugin, or the text field does not handle theKeyEventeither, theKeyEventwill be sent back to the top of the activity's view hierachy, allowing it to be "redispatched". TheKeyboardManagerwill remember this event and skip the identical event at the next encounter.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classKeyboardManager.CharacterCombinerApplies the given Unicode character fromKeyEvent.getUnicodeChar()to a previously entered Unicode combining character and returns the combination of these characters if a combination exists.static interfaceKeyboardManager.ResponderThe interface for responding to aKeyEventasynchronously.static interfaceKeyboardManager.ViewDelegateA set of interfaces that theKeyboardManagerneeds to interact with other components and the platform, and is typically implements byFlutterView.
-
Field Summary
Fields Modifier and Type Field Description protected KeyboardManager.Responder[]responders
-
Constructor Summary
Constructors Constructor Description KeyboardManager(KeyboardManager.ViewDelegate viewDelegate)Construct aKeyboardManager.
-
-
-
Field Detail
-
responders
protected final KeyboardManager.Responder[] responders
-
-
Constructor Detail
-
KeyboardManager
public KeyboardManager(@NonNull KeyboardManager.ViewDelegate viewDelegate)Construct aKeyboardManager.- Parameters:
viewDelegate- provides a set of interfaces that the keyboard manager needs to interact with other components and the platform, and is typically implements byFlutterView.
-
-
Method Detail
-
handleEvent
public boolean handleEvent(@NonNull KeyEvent keyEvent)- Specified by:
handleEventin interfaceInputConnectionAdaptor.KeyboardDelegate
-
destroy
public void destroy()
-
-