Skip to content

Commit

Permalink
Keyboard support for embedded Android views. (flutter#9203)
Browse files Browse the repository at this point in the history
Generally what this PR is doing is setting up a delegation mechanism
for Android's onCreateInputConnection.

It works by letting the framework know when an embedded view gets loses
focus(within the virtual display), the framework maintains a focus node
for each Android view that is kept in sync with the focus state of the
embedded view.

The TextInputPlugin is extended to allow for 2 type of text clients a
"framework client"(what we had before) and a "platform view client".
When the AndroidView's focus node in the framework is focused the
framework sets a "platform view text client" for the TextInputPlugin,
which will result in the TextInputPlugin delegating
createInputConnection to the platform view.

When a platform view is resized, we are detaching it from a virtual
display and attaching it to a new one, as a side affect a platform view
might lose an active input connection, to workaround that we "lock" the
connection when resizing(by caching it and forcing the cached copy until
the resize is done).

Additional things worth calling out in this PR:

To properly answer which views are allowed for input connection
proxying we compare a candidate view's root view to the set of root
views of all virtual displays.
We also preserve a view's focus state across resizes.
Note that this PR only wires text for the io.flutter.view.FlutterView
For the new Android embedding some additional plumbing is necessary.

Corresponding framework PR: flutter#33901

flutter#19718
  • Loading branch information
amirh committed Jun 7, 2019
1 parent 2ec6dad commit e80df36
Show file tree
Hide file tree
Showing 9 changed files with 294 additions and 29 deletions.
Expand Up @@ -477,7 +477,8 @@ public void attachToFlutterEngine(@NonNull FlutterEngine flutterEngine) {
// in a way that Flutter understands.
textInputPlugin = new TextInputPlugin(
this,
this.flutterEngine.getDartExecutor()
this.flutterEngine.getDartExecutor(),
null
);
androidKeyProcessor = new AndroidKeyProcessor(
this.flutterEngine.getKeyEventChannel(),
Expand Down
Expand Up @@ -26,6 +26,13 @@ public class PlatformViewsChannel {
private final MethodChannel channel;
private PlatformViewsHandler handler;

public void invokeViewFocused(int viewId) {
if (channel == null) {
return;
}
channel.invokeMethod("viewFocused", viewId);
}

private final MethodChannel.MethodCallHandler parsingHandler = new MethodChannel.MethodCallHandler() {
@Override
public void onMethodCall(MethodCall call, MethodChannel.Result result) {
Expand All @@ -51,6 +58,9 @@ public void onMethodCall(MethodCall call, MethodChannel.Result result) {
case "setDirection":
setDirection(call, result);
break;
case "clearFocus":
clearFocus(call, result);
break;
default:
result.notImplemented();
}
Expand Down Expand Up @@ -172,6 +182,20 @@ private void setDirection(@NonNull MethodCall call, @NonNull MethodChannel.Resul
);
}
}

private void clearFocus(MethodCall call, MethodChannel.Result result) {
int viewId = call.arguments();
try {
handler.clearFocus(viewId);
result.success(null);
} catch (IllegalStateException exception) {
result.error(
"error",
exception.getMessage(),
null
);
}
}
};

/**
Expand Down Expand Up @@ -241,6 +265,11 @@ void resizePlatformView(
*/
// TODO(mattcarroll): Introduce an annotation for @TextureId
void setDirection(int viewId, int direction);

/**
* Clears the focus from the platform view with a give id if it is currently focused.
*/
void clearFocus(int viewId);
}

/**
Expand Down
Expand Up @@ -70,6 +70,10 @@ public void onMethodCall(MethodCall call, MethodChannel.Result result) {
result.error("error", exception.getMessage(), null);
}
break;
case "TextInput.setPlatformViewClient":
final int id = (int) args;
textInputMethodHandler.setPlatformViewClient(id);
break;
case "TextInput.setEditingState":
try {
final JSONObject editingState = (JSONObject) args;
Expand Down Expand Up @@ -218,6 +222,16 @@ public interface TextInputMethodHandler {
// TODO(mattcarroll): javadoc
void setClient(int textInputClientId, @NonNull Configuration configuration);

/**
* Sets a platform view as the text input client.
*
* Subsequent calls to createInputConnection will be delegated to the platform view until a
* different client is set.
*
* @param id the ID of the platform view to be set as a text input client.
*/
void setPlatformViewClient(int id);

// TODO(mattcarroll): javadoc
void setEditingState(@NonNull TextEditState editingState);

Expand Down
120 changes: 112 additions & 8 deletions shell/platform/android/io/flutter/plugin/editing/TextInputPlugin.java
Expand Up @@ -18,7 +18,7 @@

import io.flutter.embedding.engine.dart.DartExecutor;
import io.flutter.embedding.engine.systemchannels.TextInputChannel;
import io.flutter.view.FlutterView;
import io.flutter.plugin.platform.PlatformViewsController;

/**
* Android implementation of the text input plugin.
Expand All @@ -30,7 +30,8 @@ public class TextInputPlugin {
private final InputMethodManager mImm;
@NonNull
private final TextInputChannel textInputChannel;
private int mClient = 0;
@NonNull
private InputTarget inputTarget = new InputTarget(InputTarget.Type.NO_TARGET, 0);
@Nullable
private TextInputChannel.Configuration configuration;
@Nullable
Expand All @@ -39,7 +40,13 @@ public class TextInputPlugin {
@Nullable
private InputConnection lastInputConnection;

public TextInputPlugin(View view, @NonNull DartExecutor dartExecutor) {
private PlatformViewsController platformViewsController;

// When true following calls to createInputConnection will return the cached lastInputConnection if the input
// target is a platform view. See the comments on lockPlatformViewInputConnection for more details.
private boolean isInputConnectionLocked;

public TextInputPlugin(View view, @NonNull DartExecutor dartExecutor, PlatformViewsController platformViewsController) {
mView = view;
mImm = (InputMethodManager) view.getContext().getSystemService(
Context.INPUT_METHOD_SERVICE);
Expand All @@ -61,6 +68,11 @@ public void setClient(int textInputClientId, TextInputChannel.Configuration conf
setTextInputClient(textInputClientId, configuration);
}

@Override
public void setPlatformViewClient(int platformViewId) {
setPlatformViewTextInputClient(platformViewId);
}

@Override
public void setEditingState(TextInputChannel.TextEditState editingState) {
setTextInputEditingState(mView, editingState);
Expand All @@ -71,13 +83,49 @@ public void clearClient() {
clearTextInputClient();
}
});
this.platformViewsController = platformViewsController;
platformViewsController.attachTextInputPlugin(this);
}

@NonNull
public InputMethodManager getInputMethodManager() {
return mImm;
}

/***
* Use the current platform view input connection until unlockPlatformViewInputConnection is called.
*
* The current input connection instance is cached and any following call to @{link createInputConnection} returns
* the cached connection until unlockPlatformViewInputConnection is called.
*
* This is a no-op if the current input target isn't a platform view.
*
* This is used to preserve an input connection when moving a platform view from one virtual display to another.
*/
public void lockPlatformViewInputConnection() {
if (inputTarget.type == InputTarget.Type.PLATFORM_VIEW) {
isInputConnectionLocked = true;
}
}

/**
* Unlocks the input connection.
*
* See also: @{link lockPlatformViewInputConnection}.
*/
public void unlockPlatformViewInputConnection() {
isInputConnectionLocked = false;
}

/**
* Detaches the text input plugin from the platform views controller.
*
* The TextInputPlugin instance should not be used after calling this.
*/
public void destroy() {
platformViewsController.detachTextInputPlugin();
}

private static int inputTypeFromTextInputType(
TextInputChannel.InputType type,
boolean obscureText,
Expand Down Expand Up @@ -128,8 +176,16 @@ private static int inputTypeFromTextInputType(
}

public InputConnection createInputConnection(View view, EditorInfo outAttrs) {
if (mClient == 0) {
if (inputTarget.type == InputTarget.Type.NO_TARGET) {
lastInputConnection = null;
return null;
}

if (inputTarget.type == InputTarget.Type.PLATFORM_VIEW) {
if (isInputConnectionLocked) {
return lastInputConnection;
}
lastInputConnection = platformViewsController.getPlatformViewById(inputTarget.id).onCreateInputConnection(outAttrs);
return lastInputConnection;
}

Expand Down Expand Up @@ -158,7 +214,7 @@ public InputConnection createInputConnection(View view, EditorInfo outAttrs) {

InputConnectionAdaptor connection = new InputConnectionAdaptor(
view,
mClient,
inputTarget.id,
textInputChannel,
mEditable
);
Expand All @@ -180,17 +236,26 @@ private void showTextInput(View view) {
}

private void hideTextInput(View view) {
mImm.hideSoftInputFromWindow(view.getApplicationWindowToken(), 0);
if (inputTarget.type == InputTarget.Type.FRAMEWORK_CLIENT) {
mImm.hideSoftInputFromWindow(view.getApplicationWindowToken(), 0);
}
}

private void setTextInputClient(int client, TextInputChannel.Configuration configuration) {
mClient = client;
inputTarget = new InputTarget(InputTarget.Type.FRAMEWORK_CLIENT, client);
this.configuration = configuration;
mEditable = Editable.Factory.getInstance().newEditable("");

// setTextInputClient will be followed by a call to setTextInputEditingState.
// Do a restartInput at that time.
mRestartInputPending = true;
unlockPlatformViewInputConnection();
}

private void setPlatformViewTextInputClient(int platformViewId) {
inputTarget = new InputTarget(InputTarget.Type.PLATFORM_VIEW, platformViewId);
mImm.restartInput(mView);
mRestartInputPending = false;
}

private void applyStateToSelection(TextInputChannel.TextEditState state) {
Expand Down Expand Up @@ -220,6 +285,45 @@ private void setTextInputEditingState(View view, TextInputChannel.TextEditState
}

private void clearTextInputClient() {
mClient = 0;
if (inputTarget.type == InputTarget.Type.PLATFORM_VIEW) {
// Focus changes in the framework tree have no guarantees on the order focus nodes are notified. A node
// that lost focus may be notified before or after a node that gained focus.
// When moving the focus from a Flutter text field to an AndroidView, it is possible that the Flutter text
// field's focus node will be notified that it lost focus after the AndroidView was notified that it gained
// focus. When this happens the text field will send a clearTextInput command which we ignore.
// By doing this we prevent the framework from clearing a platform view input client(the only way to do so
// is to set a new framework text client). I don't see an obvious use case for "clearing" a platform views
// text input client, and it may be error prone as we don't know how the platform view manages the input
// connection and we probably shouldn't interfere.
// If we ever want to allow the framework to clear a platform view text client we should probably consider
// changing the focus manager such that focus nodes that lost focus are notified before focus nodes that
// gained focus as part of the same focus event.
return;
}
inputTarget = new InputTarget(InputTarget.Type.NO_TARGET, 0);
unlockPlatformViewInputConnection();
}

static private class InputTarget {
enum Type {
NO_TARGET,
// InputConnection is managed by the TextInputPlugin, and events are forwarded to the Flutter framework.
FRAMEWORK_CLIENT,
// InputConnection is managed by an embedded platform view.
PLATFORM_VIEW
}

public InputTarget(@NonNull Type type, int id) {
this.type = type;
this.id = id;
}

@NonNull
Type type;
// The ID of the input target.
//
// For framework clients this is the framework input connection client ID.
// For platform views this is the platform view's ID.
int id;
}
}
Expand Up @@ -11,7 +11,6 @@
* Facilitates interaction between the accessibility bridge and embedded platform views.
*/
public interface PlatformViewsAccessibilityDelegate {

/**
* Returns the root of the view hierarchy for the platform view with the requested id, or null if there is no
* corresponding view.
Expand Down

0 comments on commit e80df36

Please sign in to comment.