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

12

/frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
H A DAbstractLayoutTest.java41 animate(v);
50 public void animate(View v) { method in class:AbstractLayoutTest
H A DAlignmentTest.java50 animate(v);
96 public static void animate(View v) { method in class:AlignmentTest
/frameworks/base/core/java/android/app/
H A DListFragment.java334 * @param animate If true, an animation will be used to transition to the
337 private void setListShown(boolean shown, boolean animate) { argument
347 if (animate) {
359 if (animate) {
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardMultiUserSelectorView.java88 public void finalizeActiveUserView(boolean animate) { argument
89 if (animate) {
97 finalizeActiveUserNow(animate);
101 void finalizeActiveUserNow(boolean animate) { argument
103 mActiveUserAvatar.setActive(true, animate, null);
H A DKeyguardMultiUserAvatar.java157 public void setActive(boolean active, boolean animate, final Runnable onComplete) { argument
171 updateVisualsForActive(mActive, animate, SWITCH_ANIMATION_DURATION, onComplete);
174 void updateVisualsForActive(boolean active, boolean animate, int duration, argument
187 if (animate && mTouched) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNavigationBarTransitions.java52 applyModeBackground(-1, getMode(), false /*animate*/);
53 applyMode(getMode(), false /*animate*/, true /*force*/);
58 transitionTo(mRequestedMode, false /*animate*/);
62 public void transitionTo(int mode, boolean animate) { argument
68 super.transitionTo(mode, animate);
72 protected void onTransition(int oldMode, int newMode, boolean animate) { argument
73 super.onTransition(oldMode, newMode, animate);
74 applyMode(newMode, animate, false /*force*/);
77 private void applyMode(int mode, boolean animate, boolean force) { argument
80 setKeyButtonViewQuiescentAlpha(mView.getHomeButton(), alpha, animate);
98 applyBackButtonQuiescentAlpha(int mode, boolean animate) argument
130 setKeyButtonViewQuiescentAlpha(View button, float alpha, boolean animate) argument
136 applyLightsOut(boolean lightsOut, boolean animate, boolean force) argument
[all...]
H A DPhoneStatusBarTransitions.java51 applyModeBackground(-1, getMode(), false /*animate*/);
52 applyMode(getMode(), false /*animate*/);
75 protected void onTransition(int oldMode, int newMode, boolean animate) { argument
76 super.onTransition(oldMode, newMode, animate);
77 applyMode(newMode, animate);
80 private void applyMode(int mode, boolean animate) { argument
87 if (animate) {
H A DBarTransitions.java69 public void transitionTo(int mode, boolean animate) { argument
73 if (DEBUG) Log.d(mTag, String.format("%s -> %s animate=%s",
74 modeToString(oldMode), modeToString(mode), animate));
76 onTransition(oldMode, mMode, animate);
80 protected void onTransition(int oldMode, int newMode, boolean animate) { argument
81 applyModeBackground(oldMode, newMode, animate);
84 protected void applyModeBackground(int oldMode, int newMode, boolean animate) { argument
85 if (DEBUG) Log.d(mTag, String.format("applyModeBackground oldMode=%s newMode=%s animate=%s",
86 modeToString(oldMode), modeToString(newMode), animate));
87 mBarBackground.applyModeBackground(oldMode, newMode, animate);
152 applyModeBackground(int oldMode, int newMode, boolean animate) argument
[all...]
H A DPanelBar.java188 public void collapseAllPanels(boolean animate) { argument
191 if (animate && !pv.isFullyCollapsed()) {
200 if (DEBUG) LOG("collapseAllPanels: animate=%s waiting=%s", animate, waiting);
/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
106 mLastResult = mSession.animate(targetObject, animationName, isFrameworkAnimation,
/frameworks/base/core/java/android/widget/
H A DAbsSpinner.java268 public void setSelection(int position, boolean animate) { argument
270 boolean shouldAnimate = animate && mFirstPosition <= position &&
287 * @param animate Should the transition be animated
290 void setSelectionInt(int position, boolean animate) { argument
295 layout(delta, animate);
300 abstract void layout(int delta, boolean animate); argument
H A DViewAnimator.java148 * @param animate Whether or not to use the in and out animations, defaults
151 void showOnly(int childIndex, boolean animate) { argument
156 if (animate && mInAnimation != null) {
162 if (animate && mOutAnimation != null && child.getVisibility() == View.VISIBLE) {
178 final boolean animate = (!mFirstTime || mAnimateFirstTime);
179 showOnly(childIndex, animate);
258 * Returns the current animation used to animate a View that enters the screen.
270 * Specifies the animation used to animate a View that enters the screen.
282 * Returns the current animation used to animate a View that exits the screen.
294 * Specifies the animation used to animate
351 setAnimateFirstView(boolean animate) argument
[all...]
H A DAdapterViewAnimator.java264 void transformViewForTransition(int fromIndex, int toIndex, View view, boolean animate) { argument
296 private void setDisplayedChild(int whichChild, boolean animate) { argument
307 showOnly(mWhichChild, animate);
452 * @param animate Whether or not to use the in and out animations, defaults
455 void showOnly(int childIndex, boolean animate) { argument
509 transformViewForTransition(oldRelativeIndex, -1, previousView, animate);
529 // the transform for it's new relative position in the window, and animate
537 transformViewForTransition(oldRelativeIndex, newRelativeIndex, view, animate);
558 transformViewForTransition(-1, newRelativeIndex, fl, animate);
856 * Returns the current animation used to animate
936 setAnimateFirstView(boolean animate) argument
[all...]
H A DExpandableListView.java739 * @param animate true if the expanding group should be animated in
743 public boolean expandGroup(int groupPos, boolean animate) { argument
754 if (animate) {
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimationDrawable.java219 private void setFrame(int frame, boolean unschedule, boolean animate) { argument
228 if (animate) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSearchPanelView.java214 public void show(final boolean show, boolean animate) { argument
216 final LayoutTransition transitioner = animate ? createLayoutTransitioner() : null;
239 public void hide(boolean animate) { argument
H A DDessertCaseView.java320 v.animate().withLayer().scaleX(s).scaleY(s).alpha(1f).setDuration(animationLen);
325 public void place(View v, boolean animate) { argument
326 place(v, new Point(irand(0, mColumns), irand(0, mRows)), animate);
345 public synchronized void place(View v, Point pt, boolean animate) { argument
390 if (animate) {
391 squatter.animate().withLayer()
417 if (animate) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyButtonView.java130 public void setQuiescentAlpha(float alpha, boolean animate) { argument
136 if (mGlowBG != null && animate) {
/frameworks/support/v4/java/android/support/v4/app/
H A DListFragment.java276 * @param animate If true, an animation will be used to transition to the
279 private void setListShown(boolean shown, boolean animate) { argument
289 if (animate) {
301 if (animate) {
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DAbsSpinnerICS.java252 public void setSelection(int position, boolean animate) { argument
254 boolean shouldAnimate = animate && mFirstPosition <= position &&
271 * @param animate Should the transition be animated
274 void setSelectionInt(int position, boolean animate) { argument
279 layout(delta, animate);
284 abstract void layout(int delta, boolean animate); argument
H A DSpinnerICS.java309 void layout(int delta, boolean animate) { argument
362 * there is enough information in the view's layout parameters to animate
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DDayPickerView.java171 * @param animate Whether to scroll to the given time or just redraw at the
178 public boolean goTo(CalendarDay day, boolean animate, boolean setSelected, boolean forceScroll) { argument
224 if (animate) {
/frameworks/base/core/java/android/transition/
H A DTransition.java44 * on View objects are of interest to it, and also knows how to animate
285 * on all target views, so a Transition that wants to animate from a
440 // Only bother trying to animate with values that differ between start/end
605 animate(animator);
1319 protected void animate(Animator animator) { method in class:Transition
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DRenderSessionImpl.java638 * @see RenderSession#animate(Object, String, boolean, IAnimationListener)
640 public Result animate(Object targetObject, String animationName, method in class:RenderSessionImpl
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
H A DRadialPickerLayout.java521 * @param animate True to animate the transition, false to show with no animation.
523 public void setCurrentItemShowing(int index, boolean animate) { argument
532 if (animate && (index != lastIndex)) {

Completed in 424 milliseconds

12