Searched refs:InterceptType (Results 1 - 3 of 3) sorted by relevance

/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DPhotoViewPager.java35 public static enum InterceptType { NONE, LEFT, RIGHT, BOTH } enum in class:PhotoViewPager
53 public InterceptType onTouchIntercept(float origX, float origY);
115 final InterceptType intercept = (mListener != null)
117 : InterceptType.NONE;
119 (intercept == InterceptType.BOTH || intercept == InterceptType.LEFT);
121 (intercept == InterceptType.BOTH || intercept == InterceptType.RIGHT);
/frameworks/opt/photoviewer/activity/src/com/android/ex/photo/
H A DPhotoViewActivity.java54 import com.android.ex.photo.PhotoViewPager.InterceptType;
531 public InterceptType onTouchIntercept(float origX, float origY) {
546 return InterceptType.BOTH;
548 return InterceptType.LEFT;
550 return InterceptType.RIGHT;
552 return InterceptType.NONE;
/frameworks/opt/photoviewer/appcompat/src/com/android/ex/photo/
H A DPhotoViewActivity.java53 import com.android.ex.photo.PhotoViewPager.InterceptType;
530 public InterceptType onTouchIntercept(float origX, float origY) {
545 return InterceptType.BOTH;
547 return InterceptType.LEFT;
549 return InterceptType.RIGHT;
551 return InterceptType.NONE;

Completed in 366 milliseconds