Home | History | Annotate | Download | only in cardstream

Lines Matching refs:deltaY

93                     float deltaY = y - mDownY;
95 if (!mSwiping && isSwiping(deltaX, deltaY)) {
99 swipeView(v, deltaX, deltaY);
110 float deltaY = y - mDownX;
116 handleViewSwipingOut(v, deltaX, deltaY);
118 handleViewSwipingIn(v, deltaX, deltaY);
269 * @param deltaY
272 protected boolean isSwiping(float deltaX, float deltaY) {
293 * @param deltaY y moving distance by y-axis.
296 protected void swipeView(View child, float deltaX, float deltaY) {
486 private void handleViewSwipingOut(final View child, float deltaX, float deltaY) {
487 ObjectAnimator animator = mAnimators.getSwipeOutAnimator(child, deltaX, deltaY);
507 private void handleViewSwipingIn(final View child, float deltaX, float deltaY) {
508 ObjectAnimator animator = mAnimators.getSwipeInAnimator(child, deltaX, deltaY);