Home | History | Annotate | Download | only in transition

Lines Matching refs:startX

43      * @param startX The start translation x of view
48 * @return An animator that moves from (startX, startY) to (endX, endY) unless there was
52 float startX, float startY, float endX, float endY, TimeInterpolator interpolator,
58 startX = startPosition[0] - viewPosX + terminalX;
61 // Initial position is at translation startX, startY, so position is offset by that amount
62 int startPosX = viewPosX + Math.round(startX - terminalX);
65 view.setTranslationX(startX);
67 if (startX == endX && startY == endY) {
71 path.moveTo(startX, startY);
99 int startX, int startY, float terminalX, float terminalY) {
102 mStartX = startX - Math.round(mMovingView.getTranslationX());