Aghajari / ZoomHelper

ZoomHelper will make any view to be zoomable just like Instagram pinch-to-zoom
Apache License 2.0
247 stars 22 forks source link

Can't add dispatchTouchEvent in Adapter. #12

Open Achisyg opened 3 years ago

Achisyg commented 3 years ago

Hello, I am trying to add in my Adapter the following code:

@Override
    public boolean dispatchTouchEvent(MotionEvent ev) {
        return ZoomHelper.Companion.getInstance().dispatchTouchEvent(ev,this) || super.dispatchTouchEvent(ev);
    }

But the problem is that it shows up this problem: Capture How can I solve the problem and also add @NonNull ViewHolder holder as it is in the onBindViewHolder of my adapter?