/frameworks/base/core/java/android/widget/ |
D | ViewAnimator.java | 151 void showOnly(int childIndex, boolean animate) { in showOnly() argument 156 if (animate && mInAnimation != null) { in showOnly() 162 if (animate && mOutAnimation != null && child.getVisibility() == View.VISIBLE) { in showOnly() 178 final boolean animate = (!mFirstTime || mAnimateFirstTime); in showOnly() 179 showOnly(childIndex, animate); in showOnly() 338 public void setAnimateFirstView(boolean animate) { in setAnimateFirstView() argument 339 mAnimateFirstTime = animate; in setAnimateFirstView()
|
D | AdapterViewAnimator.java | 263 void transformViewForTransition(int fromIndex, int toIndex, View view, boolean animate) { in transformViewForTransition() argument 295 private void setDisplayedChild(int whichChild, boolean animate) { in setDisplayedChild() argument 306 showOnly(mWhichChild, animate); in setDisplayedChild() 454 void showOnly(int childIndex, boolean animate) { in showOnly() argument 508 transformViewForTransition(oldRelativeIndex, -1, previousView, animate); in showOnly() 536 transformViewForTransition(oldRelativeIndex, newRelativeIndex, view, animate); in showOnly() 557 transformViewForTransition(-1, newRelativeIndex, fl, animate); in showOnly() 932 public void setAnimateFirstView(boolean animate) { in setAnimateFirstView() argument 933 mAnimateFirstTime = animate; in setAnimateFirstView()
|
D | AbsSpinner.java | 270 public void setSelection(int position, boolean animate) { in setSelection() argument 272 boolean shouldAnimate = animate && mFirstPosition <= position && in setSelection() 292 void setSelectionInt(int position, boolean animate) { in setSelectionInt() argument 297 layout(delta, animate); in setSelectionInt() 302 abstract void layout(int delta, boolean animate); in layout() argument
|
D | StackView.java | 226 void transformViewForTransition(int fromIndex, int toIndex, final View view, boolean animate) { in transformViewForTransition() argument 227 if (!animate) { in transformViewForTransition() 248 if (animate) { in transformViewForTransition() 268 if (animate) { in transformViewForTransition() 296 if (animate) { in transformViewForTransition() 309 transformViewAtIndex(toIndex, view, animate); in transformViewForTransition() 313 private void transformViewAtIndex(int index, final View view, boolean animate) { in transformViewAtIndex() argument 345 if (animate) { in transformViewAtIndex() 418 void showOnly(int childIndex, boolean animate) { in showOnly() argument 419 super.showOnly(childIndex, animate); in showOnly()
|
D | CalendarView.java | 931 public void setDate(long date, boolean animate, boolean center) { in setDate() argument 936 goTo(mTempDate, animate, true, center); in setDate() 1101 private void goTo(Calendar date, boolean animate, boolean setSelected, boolean forceScroll) { in goTo() argument 1139 if (animate) { in goTo()
|
D | ExpandableListView.java | 614 public boolean expandGroup(int groupPos, boolean animate) { in expandGroup() argument 625 if (animate) { in expandGroup()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/ |
D | ShirtPocket.java | 71 private void show(boolean animate) { in show() argument 73 if (animate) { in show() 81 private void hide(boolean animate) { in hide() argument 89 if (animate) { in hide()
|
D | NotificationPanel.java | 132 public void show(boolean show, boolean animate) { in show() argument 133 if (animate) { in show() 229 public void setContentFrameVisible(final boolean showing, boolean animate) { in setContentFrameVisible() argument
|
/frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/ |
D | AbstractLayoutTest.java | 41 animate(v); in create() 50 public void animate(View v) { in animate() method in AbstractLayoutTest
|
D | AlignmentTest.java | 50 animate(v); 96 public static void animate(View v) { in animate() method in AlignmentTest
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | NavigationBarView.java | 266 public void setLowProfile(final boolean lightsOut, final boolean animate, final boolean force) { in setLowProfile() argument 277 navButtons.animate().cancel(); in setLowProfile() 278 lowLights.animate().cancel(); in setLowProfile() 280 if (!animate) { in setLowProfile() 286 navButtons.animate() in setLowProfile() 296 lowLights.animate() in setLowProfile()
|
/frameworks/base/core/java/android/app/ |
D | ListFragment.java | 337 private void setListShown(boolean shown, boolean animate) { in setListShown() argument 347 if (animate) { in setListShown() 359 if (animate) { in setListShown()
|
/frameworks/base/policy/src/com/android/internal/policy/impl/ |
D | LockScreen.java | 121 public void reset(boolean animate); in reset() argument 189 public void reset(boolean animate) { in reset() argument 190 mSlidingTab.reset(animate); in reset() 239 public void reset(boolean animate) { in reset() argument 372 public void reset(boolean animate) { in reset() argument 373 mGlowPadView.reset(animate); in reset()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | SlidingTab.java | 248 void show(boolean animate) { in show() argument 252 if (animate) { in show() 289 void reset(boolean animate) { in reset() argument 300 if (animate) { in reset() 558 public void reset(boolean animate) { in reset() argument 559 mLeftSlider.reset(animate); in reset() 560 mRightSlider.reset(animate); in reset() 561 if (!animate) { in reset()
|
/frameworks/base/docs/html/guide/topics/graphics/ |
D | prop-animation.jd | 62 to animate almost anything. You can define an animation to change any object property over time, 64 …(a field in an object) value over a specified length of time. To animate something, you specify the 65 object property that you want to animate, such as an object's position on the screen, how long 66 you want to animate it for, and what values you want to animate between. </p> 131 starting and ending values for the property that you want to animate, along with the duration of 172 <p>The view animation system provides the capability to only animate {@link android.view.View} 173 objects, so if you wanted to animate non-{@link android.view.View} objects, you have to implement 175 exposes a few aspects of a {@link android.view.View} object to animate, such as the scaling and 183 …p>With the property animation system, these constraints are completely removed, and you can animate 186 a high level, you assign animators to the properties that you want to animate, such as color, [all …]
|
D | overview.jd | 21 animate properties of any object, including ones that are not rendered to the screen. The system is 22 extensible and lets you animate properties of custom types as well.</dd> 33 after another, like a roll of film. This method of animation is useful if you want to animate
|
D | index.jd | 24 <p>This new animation system makes it easy to animate any kind of property on any object,
|
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/ |
D | MultiWaveView.java | 532 private void hideTargets(boolean animate, boolean expanded) { in hideTargets() argument 536 mAnimatingTargets = animate; in hideTargets() 537 final int duration = animate ? HIDE_ANIMATION_DURATION : 0; in hideTargets() 538 final int delay = animate ? HIDE_ANIMATION_DELAY : 0; in hideTargets() 567 private void showTargets(boolean animate) { in showTargets() argument 569 mAnimatingTargets = animate; in showTargets() 570 final int delay = animate ? SHOW_ANIMATION_DELAY : 0; in showTargets() 571 final int duration = animate ? SHOW_ANIMATION_DURATION : 0; in showTargets() 725 public void reset(boolean animate) { in reset() argument 731 hideTargets(animate, false); in reset() [all …]
|
D | GlowPadView.java | 478 private void hideTargets(boolean animate, boolean expanded) { in hideTargets() argument 482 mAnimatingTargets = animate; in hideTargets() 483 final int duration = animate ? HIDE_ANIMATION_DURATION : 0; in hideTargets() 484 final int delay = animate ? HIDE_ANIMATION_DELAY : 0; in hideTargets() 516 private void showTargets(boolean animate) { in showTargets() argument 518 mAnimatingTargets = animate; in showTargets() 519 final int delay = animate ? SHOW_ANIMATION_DELAY : 0; in showTargets() 520 final int duration = animate ? SHOW_ANIMATION_DURATION : 0; in showTargets() 714 public void reset(boolean animate) { in reset() argument 719 hideTargets(animate, false); in reset()
|
/frameworks/support/v4/java/android/support/v4/app/ |
D | ListFragment.java | 279 private void setListShown(boolean shown, boolean animate) { in setListShown() argument 289 if (animate) { in setListShown() 301 if (animate) { in setListShown()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | SearchPanelView.java | 191 public void show(final boolean show, boolean animate) { in show() argument 193 final LayoutTransition transitioner = animate ? createLayoutTransitioner() : null; in show() 216 public void hide(boolean animate) { in hide() argument
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/ |
D | BridgeRenderSession.java | 100 public Result animate(Object targetObject, String animationName, in animate() method in BridgeRenderSession 106 mLastResult = mSession.animate(targetObject, animationName, isFrameworkAnimation, in animate()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/ |
D | RecentsPanelView.java | 280 public void show(boolean show, boolean animate) { in show() argument 284 mWaitingToShowAnimated = animate; in show() 287 show(show, animate, null, false); in show() 308 public void show(boolean show, boolean animate, in show() argument 344 if (animate) { in show() 373 public void hide(boolean animate) { in hide() argument 374 if (!animate) { in hide()
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
D | DrawableContainer.java | 110 animate(false); in setAlpha() 336 animate(true); in selectDrawable() 344 animate(true); in selectDrawable() 352 void animate(boolean schedule) { in animate() method in DrawableContainer
|
D | AnimationDrawable.java | 219 private void setFrame(int frame, boolean unschedule, boolean animate) { in setFrame() argument 228 if (animate) { in setFrame()
|