Searched refs:animate (Results 151 - 160 of 160) sorted by relevance

1234567

/frameworks/base/docs/html/training/
H A Dtraining_toc.cs512 "How to animate state changes in a view hierarchy using transitions."
/frameworks/base/libs/hwui/
H A DRenderNode.cpp404 animatorDirtyMask = mAnimatorManager.animate(info);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DRenderSessionImpl.java555 * @see RenderSession#animate(Object, String, boolean, IAnimationListener)
557 public Result animate(Object targetObject, String animationName, method in class:RenderSessionImpl
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DRecyclerViewAnimationsTest.java371 // We should still handle it and animate persistence for this item
795 assertNotSame("add-remove item should not animate add", testView[0], vh.itemView);
798 assertNotSame("add-remove item should not animate move", testView[0], vh.itemView);
801 assertNotSame("add-remove item should not animate remove", testView[0], vh.itemView);
1389 ViewCompat.animate(holder.itemView).cancel();
1751 assertTrue("since LM force recycled a view, animate disappearance should not be called",
/frameworks/base/core/java/android/view/
H A DViewGroup.java479 // Used to animate add/remove changes in layout
4980 * @param animate if true and the view has an animation, the view is placed in the
4988 protected void removeDetachedView(View child, boolean animate) { argument
5002 if ((animate && child.getAnimation() != null) ||
5624 * Indicates whether the view group has the ability to animate its children
5655 * Sets the layout animation controller used to animate the group's
5668 * Returns the layout animation controller used to animate the group's
6297 * {@link android.app.Fragment} and {@link android.animation.LayoutTransition} to animate
6988 * Used to animate layouts.
H A DView.java649 * {@link android.view.animation.Animation Animation}-based classes, which instead animate only
654 * Alternatively, you can use the pre-3.0 animation classes to animate how Views are rendered.
17818 * view; else false and it is not allowed to animate.
22264 * This method returns a ViewPropertyAnimator object, which can be used to animate
22269 public ViewPropertyAnimator animate() { method in class:View
/frameworks/base/core/java/android/widget/
H A DAbsListView.java7068 private void removeDetachedView(View child, boolean animate) { argument
7070 AbsListView.this.removeDetachedView(child, animate);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java881 * animate the disappearing views, you may prefer to set
1052 // TODO We should do this switch a dispachLayout pass and animate children. There is a good
3453 protected void removeDetachedView(View child, boolean animate) { argument
3464 super.removeDetachedView(child, animate);
5588 // to animate when they are returned from cache.
6728 * the animation system to know the location to which to animate these disappearing
6962 * in how to animate the item out of view.
6979 * in how to animate the item out of view.
9859 * treat it differently in order to animate its outgoing or disappearing state.
9870 * treat it differently in order to animate it
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java2889 // We don't want to animate visibility of windows which are pending
3161 // frozen, there is no reason to animate and it can cause strange
6710 // Announce rotation only if we will not animate as we already have the
7647 imeOnBottom /*ime*/, true /*divider*/, true /*animate*/, imeWin, imeHeight);
7655 false /*ime*/, false /*divider*/, dockVisible /*animate*/, imeWin, imeHeight);
10823 public void setReplacingWindow(IBinder token, boolean animate) { argument
10832 appWindowToken.setReplacingWindows(animate);
10859 appWindowToken.setReplacingWindows(false /* animate */);
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java9896 * @param animate Whether we should play an animation for the moving the task
9901 public boolean moveTaskToDockedStack(int taskId, int createMode, boolean toTop, boolean animate, argument
9912 animate, DEFER_RESUME);
9955 boolean preserveWindows, boolean animate, int animationDuration) {
9960 if (animate) {
9954 resizeStack(int stackId, Rect bounds, boolean allowResizeInDockedMode, boolean preserveWindows, boolean animate, int animationDuration) argument

Completed in 516 milliseconds

1234567