Searched defs:animate (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridgeRenderSession.java100 public Result animate(Object targetObject, String animationName, method in class:BridgeRenderSession
103 return super.animate(targetObject, animationName, isFrameworkAnimation, listener);
/frameworks/base/core/java/android/widget/
H A DAbsSpinner.java265 public void setSelection(int position, boolean animate) { argument
267 boolean shouldAnimate = animate && mFirstPosition <= position &&
284 * @param animate Should the transition be animated
287 void setSelectionInt(int position, boolean animate) { argument
292 layout(delta, animate);
297 abstract void layout(int delta, boolean animate); argument
H A DSpinner.java126 void layout(int delta, boolean animate) { argument
171 * there is enough information in the view's layout parameters to animate
H A DViewAnimator.java230 * Returns the current animation used to animate a View that enters the screen.
242 * Specifies the animation used to animate a View that enters the screen.
254 * Returns the current animation used to animate a View that exits the screen.
266 * Specifies the animation used to animate a View that exit the screen.
278 * Specifies the animation used to animate a View that enters the screen.
291 * Specifies the animation used to animate a View that exit the screen.
307 * @param animate True to animate the current View the first time it is displayed,
310 public void setAnimateFirstView(boolean animate) { argument
311 mAnimateFirstTime = animate;
[all...]
H A DGallery.java584 void layout(int delta, boolean animate) { argument
712 * is enough information in the view's layout parameters to animate from the
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimationDrawable.java206 private void setFrame(int frame, boolean unschedule, boolean animate) { argument
215 if (animate) {
/frameworks/base/core/java/com/android/internal/widget/
H A DSlidingTab.java249 void show(boolean animate) { argument
253 if (animate) {
290 void reset(boolean animate) { argument
301 if (animate) {
552 * Animate them back into place if animate is true.
554 * @param animate
556 public void reset(boolean animate) { argument
557 mLeftSlider.reset(animate);
558 mRightSlider.reset(animate);
559 if (!animate) {
[all...]
/frameworks/base/core/java/android/view/
H A DViewGroup.java2323 * @param animate if true and the view has an animation, the view is placed in the
2331 protected void removeDetachedView(View child, boolean animate) { argument
2336 if (animate && child.getAnimation() != null) {
2678 * Indicates whether the view group has the ability to animate its children
2709 * Sets the layout animation controller used to animate the group's
2722 * Returns the layout animation controller used to animate the group's
3527 * Used to animate layouts.
/frameworks/base/core/java/android/webkit/
H A DWebViewCore.java1891 private void contentScrollBy(int dx, int dy, boolean animate) { argument
1898 WebView.SCROLL_BY_MSG_ID, dx, dy, new Boolean(animate));
H A DWebView.java3042 private boolean pinScrollBy(int dx, int dy, boolean animate, int animationDuration) { argument
3043 return pinScrollTo(mScrollX + dx, mScrollY + dy, animate, animationDuration);
3047 private boolean pinScrollTo(int x, int y, boolean animate, int animationDuration) { argument
3056 if (animate) {
3071 private boolean setContentScrollBy(int cx, int cy, boolean animate) { argument
3094 return cy == 0 && cx != 0 && pinScrollBy(cx, 0, animate, 0);
3096 return pinScrollBy(cx, cy, animate, 0);
3167 // animate the title bar off screen slowly enough that the user can see
3632 * animate the text selection into view.

Completed in 212 milliseconds