HomeSort by relevance Sort by last modified time
    Searched defs:animateChange (Results 1 - 14 of 14) sorted by null

  /packages/apps/Settings/src/com/android/settings/dashboard/
DashboardItemAnimator.java 26 public boolean animateChange(ViewHolder oldHolder, ViewHolder newHolder, int fromX, int fromY,
42 return super.animateChange(oldHolder, newHolder, fromX, fromY, toX, toY);
  /frameworks/base/core/java/com/android/internal/widget/
SimpleItemAnimator.java 60 * {@link #animateChange(ViewHolder, ViewHolder, int, int, int, int)} implementation.
67 * {@link #animateChange(ViewHolder, ViewHolder, int, int, int,
148 public boolean animateChange(@NonNull ViewHolder oldHolder, @NonNull ViewHolder newHolder,
163 return animateChange(oldHolder, newHolder, fromLeft, fromTop, toLeft, toTop);
177 * {@link #animateChange(ViewHolder, ViewHolder, int, int, int, int)} come in one by one,
202 * {@link #animateChange(ViewHolder, ViewHolder, int, int, int, int)} come in one by one,
227 * {@link #animateChange(ViewHolder, ViewHolder, int, int, int, int)} come in one by one,
255 * {@link #animateChange(ViewHolder, ViewHolder, int, int, int, int)} come in one by one,
267 public abstract boolean animateChange(ViewHolder oldHolder,
311 * {@link #animateChange(ViewHolder, ViewHolder, int, int, int, int)})
    [all...]
DefaultItemAnimator.java 320 public boolean animateChange(ViewHolder oldHolder, ViewHolder newHolder,
653 * <li>If you override {@link #animateChange(ViewHolder, ViewHolder, int, int, int, int)}, both
657 * If you are not overriding {@link #animateChange(ViewHolder, ViewHolder, int, int, int, int)},
RecyclerView.java 513 if (mItemAnimator.animateChange(viewHolder, viewHolder, preInfo, postInfo)) {
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
LightBarController.java 180 private boolean animateChange() {
196 mStatusBarIconController.getTransitionsController().setIconsDark(true, animateChange());
204 false, animateChange());
215 mStatusBarIconController.getTransitionsController().setIconsDark(true, animateChange());
222 mNavigationLight, animateChange());
  /frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
DummyItemAnimator.java 134 public boolean animateChange(RecyclerView.ViewHolder oldHolder,
LoggingItemAnimator.java 41 List<BaseRecyclerViewAnimationsTest.AnimateChange> mAnimateChangeList = new ArrayList<>();
51 if (log instanceof BaseRecyclerViewAnimationsTest.AnimateChange) {
52 if (((BaseRecyclerViewAnimationsTest.AnimateChange) log).newHolder == viewHolder) {
113 public boolean animateChange(@NonNull RecyclerView.ViewHolder oldHolder,
117 .add(new BaseRecyclerViewAnimationsTest.AnimateChange(oldHolder, newHolder,
120 return super.animateChange(oldHolder, newHolder, preInfo, postInfo);
159 public boolean animateChange(RecyclerView.ViewHolder oldHolder,
167 return super.animateChange(oldHolder, newHolder, fromX, fromY, toX, toY);
DefaultItemAnimatorTest.java 193 public void animateChange() throws Throwable {
197 assertTrue(animateChange(vh, vh2, 0, 0, 100, 100));
280 assertTrue(animateChange(vh, vh2, 20, 20, 100, 100));
298 assertTrue(animateChange(vh, vh2, 20, 20, 100, 100));
316 assertTrue(animateChange(vh, vh2, 20, 20, 100, 100));
365 boolean animateChange(final RecyclerView.ViewHolder oldHolder,
372 result[0] = mAnimator.animateChange(oldHolder, newHolder, fromX, fromY, toX, toY);
ItemAnimatorV2ApiTest.java 139 assertEquals(new AnimateChange(oldTarget, newTarget, pre, post),
245 AnimateChange log = mAnimator.animateChangeList.get(0);
280 AnimateChange log = mAnimator.animateChangeList.get(0);
326 AnimateChange logReplaced = null, logReused = null;
327 for (AnimateChange change : mAnimator.animateChangeList) {
421 AnimateChange log = mAnimator.animateChangeList.get(0);
450 for (AnimateChange change : mAnimator.animateChangeList) {
583 for (AnimateChange change : mAnimator.animateChangeList) {
609 List<AnimateChange> animateChangeList = new ArrayList<>();
672 public boolean animateChange(@NonNull RecyclerView.ViewHolder oldHolder
    [all...]
  /frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
SimpleItemAnimator.java 58 * {@link #animateChange(RecyclerView.ViewHolder, RecyclerView.ViewHolder, int, int, int, int)} implementation.
65 * {@link #animateChange(RecyclerView.ViewHolder, RecyclerView.ViewHolder, int, int, int,
146 public boolean animateChange(@NonNull RecyclerView.ViewHolder oldHolder, @NonNull RecyclerView.ViewHolder newHolder,
161 return animateChange(oldHolder, newHolder, fromLeft, fromTop, toLeft, toTop);
175 * {@link #animateChange(RecyclerView.ViewHolder, RecyclerView.ViewHolder, int, int, int, int)} come in one by one,
200 * {@link #animateChange(RecyclerView.ViewHolder, RecyclerView.ViewHolder, int, int, int, int)} come in one by one,
225 * {@link #animateChange(RecyclerView.ViewHolder, RecyclerView.ViewHolder, int, int, int, int)} come in one by one,
253 * {@link #animateChange(RecyclerView.ViewHolder, RecyclerView.ViewHolder, int, int, int, int)} come in one by one,
265 public abstract boolean animateChange(RecyclerView.ViewHolder oldHolder,
310 * {@link #animateChange(RecyclerView.ViewHolder, RecyclerView.ViewHolder, int, int, int, int)})
    [all...]
DefaultItemAnimator.java 319 public boolean animateChange(RecyclerView.ViewHolder oldHolder, RecyclerView.ViewHolder newHolder,
652 * <li>If you override {@link #animateChange(RecyclerView.ViewHolder, RecyclerView.ViewHolder, int, int, int, int)}, both
656 * If you are not overriding {@link #animateChange(RecyclerView.ViewHolder, RecyclerView.ViewHolder, int, int, int, int)},
RecyclerView.java 582 if (mItemAnimator.animateChange(viewHolder, viewHolder, preInfo,
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
ItemAnimator.java 158 public boolean animateChange(@NonNull final ViewHolder oldHolder,
248 public boolean animateChange(ViewHolder oldHolder,
  /frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/widget/
AnimatedRecyclerView.java 206 public boolean animateChange(RecyclerView.ViewHolder oldHolder,
210 return super.animateChange(oldHolder, newHolder, preInfo, postInfo);

Completed in 410 milliseconds