okaybroda/ImageZoom

Usage in fragment

Closed this issue · 1 comments

How I can override this method in fragment?
@Override public boolean dispatchTouchEvent(MotionEvent ev) { return imageZoomHelper.onDispatchTouchEvent(ev) || super.dispatchTouchEvent(ev); }

Just place that code in the Activity that holds that Fragment. The touch event should be passed down from the Activity to the Fragment's Views.