Home | History | Annotate | Download | only in ui

Lines Matching refs:deltaX

229                         float deltaX = Math.abs(currX - mInitialTouchPosX);
231 && deltaY > (FACTOR * deltaX)) {
362 float deltaX = ev.getX() - mInitialTouchPosX;
371 if (Math.abs(deltaX) < minDistance) {
381 if (Math.abs(deltaX) >= size) {
382 deltaX = deltaX > 0 ? maxScrollDistance : -maxScrollDistance;
384 deltaX = maxScrollDistance
385 * (float) Math.sin((deltaX / size) * (Math.PI / 2));
388 setTranslation(mCurrAnimView, deltaX);