Searched refs:animate (Results 1 - 25 of 55) sorted by relevance

123

/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/packages/Keyguard/src/com/android/keyguard/
H A DEmergencyCarrierArea.java53 mCarrierText.animate().alpha(0);
56 mCarrierText.animate().alpha(1);
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) {
H A DKeyguardViewStateManager.java122 ((View) mKeyguardSecurityContainer).animate().alpha(0f).setDuration(duration)
127 ((View) mKeyguardSecurityContainer).animate().alpha(1f).setDuration(duration)
/frameworks/base/core/java/android/widget/
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 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 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...]
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
H A DOverlayTest.java44 fadingButton.animate().alpha(0).setDuration(1000).withEndAction(new Runnable() {
/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/com/android/internal/app/
H A DPlatLogoActivity.java115 letter.animate().cancel();
117 letter.animate()
129 bg.animate().alpha(1f).scaleX(1f).setStartDelay(500).start();
130 letter.animate().alpha(0f).scaleY(0.5f).scaleX(0.5f)
139 logo.animate().alpha(1f).scaleX(1f).scaleY(1f)
145 tv.animate().alpha(1f).setDuration(1000).setStartDelay(1000).start();
/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
/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/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/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/base/packages/SystemUI/src/com/android/systemui/
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) {
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
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DMultiWaveView.java533 private void hideTargets(boolean animate, boolean expanded) { argument
537 mAnimatingTargets = animate;
538 final int duration = animate ? HIDE_ANIMATION_DURATION : 0;
539 final int delay = animate ? HIDE_ANIMATION_DELAY : 0;
568 private void showTargets(boolean animate) { argument
570 mAnimatingTargets = animate;
571 final int delay = animate ? SHOW_ANIMATION_DELAY : 0;
572 final int duration = animate ? SHOW_ANIMATION_DURATION : 0;
724 * Resets the widget to default state and cancels all animation. If animate is 'true', will
725 * animate object
729 reset(boolean animate) argument
789 moveHandleTo(float x, float y, boolean animate) argument
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DSlidingTab.java250 void show(boolean animate) { argument
254 if (animate) {
291 void reset(boolean animate) { argument
302 if (animate) {
556 * Animate them back into place if animate is true.
558 * @param animate
560 public void reset(boolean animate) { argument
561 mLeftSlider.reset(animate);
562 mRightSlider.reset(animate);
563 if (!animate) {
[all...]
/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/services/java/com/android/server/accessibility/
H A DScreenMagnifier.java995 public void reset(boolean animate) { argument
1000 if (animate) {
1023 public void setScale(float scale, float pivotX, float pivotY, boolean animate) { argument
1036 setScaleAndMagnifiedRegionCenter(scale, centerX, centerY, animate);
1039 public void setMagnifiedRegionCenter(float centerX, float centerY, boolean animate) { argument
1041 animate);
1055 boolean animate) {
1071 if (animate) {
1054 setScaleAndMagnifiedRegionCenter(float scale, float centerX, float centerY, boolean animate) argument

Completed in 556 milliseconds

123