imablanco / Zoomy

Zoomy is an easy to use pinch-to-zoom Android library
918 stars 120 forks source link

Zoomy Library MotionEvent.ACTION_DOWN not working? #40

Open theoyuncu8 opened 1 year ago

theoyuncu8 commented 1 year ago

Hi, when i enable zoomy library, i can't listen for MotionEvent.ACTION_DOWN event. Can you please help?

viewHolder.imagePager.setOnTouchListener(new View.OnTouchListener() { @Override public boolean onTouch(View v, MotionEvent event) { if (event.getAction() == MotionEvent.ACTION_DOWN) { Toast.makeText(activity.getApplicationContext(), "ACTION_DOWN", Toast.LENGTH_SHORT).show(); } return false; } });