[go: nahoru, domu]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Android: add support for TextInputType.none #26585

Merged
merged 8 commits into from
Jun 29, 2021
Prev Previous commit
Adapt to API change
  • Loading branch information
jpnurmi committed Jun 24, 2021
commit 0dbfa4ea3debc9be8337ac30bdba7a6d331a1349
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,9 @@ public void inputConnection_textInputTypeNone() {
null,
null));

InputConnection connection = textInputPlugin.createInputConnection(testView, new EditorInfo());
InputConnection connection =
textInputPlugin.createInputConnection(
testView, mock(KeyboardManager.class), new EditorInfo());
assertEquals(connection, null);
}

Expand Down