We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f43a63 commit e29662cCopy full SHA for e29662c
1 file changed
ui/editable-text-base/editable-text-base.android.ts
@@ -112,14 +112,13 @@ export class EditableTextBase extends common.EditableTextBase {
112
public focus(): boolean {
113
var result = super.focus();
114
115
- if (result && this.android) {
116
- this._imm.showSoftInput(this.android, android.view.inputmethod.InputMethodManager.SHOW_IMPLICIT);
+ if (result && this._nativeView) {
+ this._imm.showSoftInput(this._nativeView, android.view.inputmethod.InputMethodManager.SHOW_IMPLICIT);
117
}
118
119
return result;
120
121
122
-
123
public _onTextPropertyChanged(data: dependencyObservable.PropertyChangeData) {
124
if (this._android) {
125
this.android.setText(data.newValue + "", android.widget.TextView.BufferType.EDITABLE);
0 commit comments