diff --git a/engine/src/flutter/shell/platform/android/io/flutter/view/FlutterView.java b/engine/src/flutter/shell/platform/android/io/flutter/view/FlutterView.java index e403785a938..d8016556359 100644 --- a/engine/src/flutter/shell/platform/android/io/flutter/view/FlutterView.java +++ b/engine/src/flutter/shell/platform/android/io/flutter/view/FlutterView.java @@ -745,6 +745,9 @@ public class FlutterView if (mAccessibilityEnabled || mTouchExplorationEnabled) { ensureAccessibilityEnabled(); } + if (mTouchExplorationEnabled) { + nativeSetAssistiveTechnologyEnabled(mNativeView.get(), true); + } resetWillNotDraw(); mAccessibilityManager.addAccessibilityStateChangeListener(this); if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {