MultiTouchZoom.java 265 B

1234567891011
  1. package com.poqop.document.multitouch;
  2. import android.view.MotionEvent;
  3. public interface MultiTouchZoom {
  4. boolean onTouchEvent(MotionEvent ev);
  5. boolean isResetLastPointAfterZoom();
  6. void setResetLastPointAfterZoom(boolean resetLastPointAfterZoom);
  7. }