Searched refs:animator (Results 101 - 108 of 108) sorted by relevance

12345

/frameworks/support/v7/recyclerview/src/android/support/v7/widget/helper/
H A DItemTouchHelper.java166 * This is necessary after swipe dismissing an item. We wait until animator finishes its job
681 final RecyclerView.ItemAnimator animator = mRecyclerView.getItemAnimator();
682 // if animator is running or we have other active recover animations, we try
685 if ((animator == null || !animator.isRunning(null))
2369 * We run updates on onDraw method but use the fraction from animator callback.
/frameworks/base/core/java/android/widget/
H A DDatePickerCalendarDelegate.java161 mAnimator = (ViewAnimator) mContainer.findViewById(R.id.animator);
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSwipeHelper.java450 public void onAnimationEnd(Animator animator) {
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DDatePickerDialog.java233 mAnimator = (AccessibleDateAnimator) view.findViewById(R.id.animator);
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DRecyclerViewLayoutTest.java1609 final DefaultItemAnimator animator = new DefaultItemAnimator();
1610 animator.setSupportsChangeAnimations(true);
1611 animator.setChangeDuration(10000);
1616 recyclerView.setItemAnimator(animator);
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java814 public void registerAnimatingRenderNode(RenderNode animator) { argument
816 mAttachInfo.mHardwareRenderer.registerAnimatingRenderNode(animator);
821 mAttachInfo.mPendingAnimatingRenderNodes.add(animator);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java929 // recyclerView.children. This may not be true if item animator's end does not work as
2870 * @param animator The ItemAnimator being set. If null, no animations will occur
2873 public void setItemAnimator(ItemAnimator animator) { argument
2878 mItemAnimator = animator;
2971 * indicates that there is no animator and that item changes will happen without
5148 * A small exception to this rule is when the view does not have an animator reference
7667 // To avoid this, we mark it as not recycleable before calling the item animator.
10713 * method on the animator's listener when it is done animating any item.
10895 * Sets the listener that must be called when the animator is finished
10906 * Called by the RecyclerView before the layout begins. Item animator shoul
[all...]
/frameworks/base/tools/aapt/
H A DResource.cpp217 return type == "anim" || type == "animator" || type == "interpolator"
1224 ASSIGN_IT(animator);
1247 !applyFileOverlay(bundle, assets, &animators, "animator") ||
1303 err = makeFileResources(bundle, assets, &table, animators, "animator");
1427 ResourceDirIterator it(animators, String8("animator"));

Completed in 434 milliseconds

12345