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

  /packages/services/Car/car-support-lib/src/android/support/car/ui/
CarItemAnimator.java 33 public boolean animateChange(RecyclerView.ViewHolder oldHolder,
42 boolean ret = super.animateChange(oldHolder, newHolder, fromX, fromY, toX, toY);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
LightStatusBarController.java 91 private boolean animateChange() {
107 mIconController.setIconsDark(true, animateChange());
114 mIconController.setIconsDark(false, animateChange());
126 mIconController.setIconsDark(true, animateChange());
  /packages/apps/Settings/src/com/android/settings/dashboard/conditional/
ConditionAdapterUtils.java 82 animateChange(view.itemView, view.itemView.findViewById(R.id.content),
110 private static void animateChange(final View view, final View content,
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/
DirectoryItemAnimator.java 103 public boolean animateChange(final RecyclerView.ViewHolder oldHolder,
107 return super.animateChange(oldHolder, newHolder, preInfo, postInfo);
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
SimpleItemAnimator.java 46 * {@link #animateChange(ViewHolder, ViewHolder, int, int, int, int)} implementation.
53 * {@link #animateChange(ViewHolder, ViewHolder, int, int, int,
134 public boolean animateChange(@NonNull ViewHolder oldHolder, @NonNull ViewHolder newHolder,
149 return animateChange(oldHolder, newHolder, fromLeft, fromTop, toLeft, toTop);
163 * {@link #animateChange(ViewHolder, ViewHolder, int, int, int, int)} come in one by one,
188 * {@link #animateChange(ViewHolder, ViewHolder, int, int, int, int)} come in one by one,
213 * {@link #animateChange(ViewHolder, ViewHolder, int, int, int, int)} come in one by one,
241 * {@link #animateChange(ViewHolder, ViewHolder, int, int, int, int)} come in one by one,
253 abstract public boolean animateChange(ViewHolder oldHolder,
297 * {@link #animateChange(ViewHolder, ViewHolder, int, int, int, int)})
    [all...]
DefaultItemAnimator.java 312 public boolean animateChange(ViewHolder oldHolder, ViewHolder newHolder,
643 * <li>If you override {@link #animateChange(ViewHolder, ViewHolder, int, int, int, int)}, both
647 * If you are not overriding {@link #animateChange(ViewHolder, ViewHolder, int, int, int, int)},
RecyclerView.java 501 if (mItemAnimator.animateChange(viewHolder, viewHolder, preInfo, postInfo)) {
    [all...]
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
LoggingItemAnimator.java 23 import android.support.v7.widget.BaseRecyclerViewAnimationsTest.AnimateChange;
42 List<AnimateChange> mAnimateChangeList = new ArrayList<>();
52 if (log instanceof AnimateChange) {
53 if (((AnimateChange) log).newHolder == viewHolder) {
114 public boolean animateChange(@NonNull RecyclerView.ViewHolder oldHolder,
118 .add(new AnimateChange(oldHolder, newHolder,
121 return super.animateChange(oldHolder, newHolder, preInfo, postInfo);
160 public boolean animateChange(RecyclerView.ViewHolder oldHolder,
168 return super.animateChange(oldHolder, newHolder, fromX, fromY, toX, toY);
DefaultItemAnimatorTest.java 192 public void animateChange() throws Throwable {
196 assertTrue(animateChange(vh, vh2, 0, 0, 100, 100));
279 assertTrue(animateChange(vh, vh2, 20, 20, 100, 100));
297 assertTrue(animateChange(vh, vh2, 20, 20, 100, 100));
315 assertTrue(animateChange(vh, vh2, 20, 20, 100, 100));
364 boolean animateChange(final RecyclerView.ViewHolder oldHolder,
371 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/samples/Support7Demos/src/com/example/android/supportv7/widget/
AnimatedRecyclerView.java 209 public boolean animateChange(RecyclerView.ViewHolder oldHolder,
214 return super.animateChange(oldHolder, newHolder, preInfo, postInfo);
  /prebuilts/sdk/current/support/v7/recyclerview/libs/
android-support-v7-recyclerview.jar 

Completed in 2821 milliseconds