diff --git a/ui/core/view.android.ts b/ui/core/view.android.ts index 60753f31b..6a600229f 100644 --- a/ui/core/view.android.ts +++ b/ui/core/view.android.ts @@ -139,6 +139,10 @@ export class View extends viewCommon.View { } } + if (!owner._nativeView || !owner._nativeView.onTouchEvent) { + return false; + } + return owner._nativeView.onTouchEvent(motionEvent); } }));