Searched refs:animateMove (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
H A DSimpleItemAnimator.java104 return animateMove(viewHolder, oldLeft, oldTop, newLeft, newTop);
122 return animateMove(viewHolder, preLayoutInfo.left, preLayoutInfo.top,
140 return animateMove(viewHolder,
175 * {@link #animateMove(ViewHolder, int, int, int, int) animateMove()},
200 * {@link #animateMove(ViewHolder, int, int, int, int) animateMove()},
225 * {@link #animateMove(ViewHolder, int, int, int, int) animateMove()},
234 public abstract boolean animateMove(ViewHolde method in class:SimpleItemAnimator
[all...]
H A DDefaultItemAnimator.java256 public boolean animateMove(final ViewHolder holder, int fromX, int fromY, method in class:DefaultItemAnimator
325 return animateMove(oldHolder, fromX, fromY, toX, toY);
658 * then DefaultItemAnimator will call {@link #animateMove(ViewHolder, int, int, int, int)} and
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DSimpleItemAnimator.java104 return animateMove(viewHolder, oldLeft, oldTop, newLeft, newTop);
122 return animateMove(viewHolder, preLayoutInfo.left, preLayoutInfo.top,
140 return animateMove(viewHolder,
175 * {@link #animateMove(ViewHolder, int, int, int, int) animateMove()},
200 * {@link #animateMove(ViewHolder, int, int, int, int) animateMove()},
225 * {@link #animateMove(ViewHolder, int, int, int, int) animateMove()},
234 public abstract boolean animateMove(ViewHolde method in class:SimpleItemAnimator
[all...]
H A DDefaultItemAnimator.java255 public boolean animateMove(final ViewHolder holder, int fromX, int fromY, method in class:DefaultItemAnimator
324 return animateMove(oldHolder, fromX, fromY, toX, toY);
657 * then DefaultItemAnimator will call {@link #animateMove(ViewHolder, int, int, int, int)} and
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DDefaultItemAnimatorTest.java182 public void animateMove() throws Throwable { method in class:DefaultItemAnimatorTest
185 assertTrue(animateMove(vh, 0, 0, 100, 100));
244 assertTrue(animateMove(vh, 10, 10, 100, 100));
252 assertTrue(animateMove(vh, 10, 10, 100, 100));
351 boolean animateMove(final RecyclerView.ViewHolder vh, final int fromX, final int fromY, method in class:DefaultItemAnimatorTest
357 result[0] = mAnimator.animateMove(vh, fromX, fromY, toX, toY);
H A DLoggingItemAnimator.java153 public boolean animateMove(RecyclerView.ViewHolder holder, int fromX, int fromY, method in class:LoggingItemAnimator
156 return super.animateMove(holder, fromX, fromY, toX, toY);
H A DRecyclerViewAnimationsTest.java773 public boolean animateMove(RecyclerView.ViewHolder holder, int fromX, int fromY,

Completed in 3231 milliseconds