Skip to content
This repository was archived by the owner on May 7, 2025. It is now read-only.
This repository was archived by the owner on May 7, 2025. It is now read-only.

Event propagation from content to webview #69

Open
@ClementHard

Description

@ClementHard

Hello,

I'm using the swipe gesture to turn pages and it work great by adding a GestureDetector into the webview OnTouchListener.
But if I want to check if the webview consumed the event before trying to detect the swipe gesture (in order to avoid turning the page when dragging a slideshow for example) it do not work because the webview.onTouchEvent(e) always return true even if there is no interactive content.

The same thing works perfectly on iOS.

Here is a StackOverflow question referring to the same problem : http://stackoverflow.com/questions/29821565/check-if-android-webview-is-consuming-touch-events

GestureDetector gestureDetector = new SwipeGestureDetector(context);
webview.setOnTouchListener(new View.OnTouchListener() {
    public boolean onTouch(View v, MotionEvent event) {
        // With the following code, the gestureDetector is never triggered, webview.onTouchEvent(e) always return true (event is consumed by the webview).
        return webview.onTouchEvent(event) || gestureDetector.onTouchEvent(event);
    }
});

This is probably an Android webview issue.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions