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

12345

/frameworks/support/v4/ics/android/support/v4/view/
H A DViewPropertyAnimatorCompatICS.java26 view.animate().setDuration(value);
30 view.animate().alpha(value);
34 view.animate().translationX(value);
38 view.animate().translationY(value);
42 return view.animate().getDuration();
46 view.animate().setInterpolator(value);
50 view.animate().setStartDelay(value);
54 return view.animate().getStartDelay();
58 view.animate().alphaBy(value);
62 view.animate()
[all...]
/frameworks/support/v4/jellybean/android/support/v4/view/
H A DViewPropertyAnimatorCompatJB.java25 view.animate().withStartAction(runnable);
29 view.animate().withEndAction(runnable);
33 view.animate().withLayer();
39 view.animate().setListener(new AnimatorListenerAdapter() {
56 view.animate().setListener(null);
/frameworks/support/v4/jellybean-mr2/android/support/v4/view/
H A DViewPropertyAnimatorCompatJellybeanMr2.java23 return (Interpolator) view.animate().getInterpolator();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNavigationBarTransitions.java51 applyModeBackground(-1, getMode(), false /*animate*/);
52 applyMode(getMode(), false /*animate*/, true /*force*/);
57 transitionTo(mRequestedMode, false /*animate*/);
61 public void transitionTo(int mode, boolean animate) { argument
71 super.transitionTo(mode, animate);
75 protected void onTransition(int oldMode, int newMode, boolean animate) { argument
76 super.onTransition(oldMode, newMode, animate);
77 applyMode(newMode, animate, false /*force*/);
80 private void applyMode(int mode, boolean animate, boolean force) { argument
83 setKeyButtonViewQuiescentAlpha(mView.getHomeButton(), alpha, animate);
99 applyBackButtonQuiescentAlpha(int mode, boolean animate) argument
117 setKeyButtonViewQuiescentAlpha(View button, float alpha, boolean animate) argument
123 applyLightsOut(boolean lightsOut, boolean animate, boolean force) argument
[all...]
H A DPhoneStatusBarTransitions.java51 applyModeBackground(-1, getMode(), false /*animate*/);
52 applyMode(getMode(), false /*animate*/);
76 protected void onTransition(int oldMode, int newMode, boolean animate) { argument
77 super.onTransition(oldMode, newMode, animate);
78 applyMode(newMode, animate);
81 private void applyMode(int mode, boolean animate) { argument
88 if (animate) {
H A DBarTransitions.java73 public void transitionTo(int mode, boolean animate) { argument
85 if (DEBUG) Log.d(mTag, String.format("%s -> %s animate=%s",
86 modeToString(oldMode), modeToString(mode), animate));
87 onTransition(oldMode, mMode, animate);
90 protected void onTransition(int oldMode, int newMode, boolean animate) { argument
92 applyModeBackground(oldMode, newMode, animate);
96 protected void applyModeBackground(int oldMode, int newMode, boolean animate) { argument
97 if (DEBUG) Log.d(mTag, String.format("applyModeBackground oldMode=%s newMode=%s animate=%s",
98 modeToString(oldMode), modeToString(newMode), animate));
99 mBarBackground.applyModeBackground(oldMode, newMode, animate);
173 applyModeBackground(int oldMode, int newMode, boolean animate) argument
[all...]
H A DKeyguardStatusBarView.java175 public void setKeyguardUserSwitcherShowing(boolean showing, boolean animate) { argument
177 if (animate) {
194 mSystemIconsSuperContainer.animate()
202 mMultiUserSwitch.animate()
218 mMultiUserSwitch.animate()
234 mSystemIconsSuperContainer.animate().cancel();
235 mMultiUserSwitch.animate().cancel();
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
H A DPreviewPageFrame.java66 public void setSelected(boolean selected, boolean animate) { argument
72 if (animate) {
73 animate().translationZ(mSelectedElevation)
80 if (animate) {
81 animate().translationZ(mNotSelectedElevation)
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DIconPulser.java38 target.animate().cancel();
39 target.animate().scaleX(PULSE_SCALE).scaleY(PULSE_SCALE)
44 target.animate().scaleX(1).scaleY(1).setListener(null);
/frameworks/support/v4/kitkat/android/support/v4/view/
H A DViewPropertyAnimatorCompatKK.java25 view.animate().setUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DEmergencyCarrierArea.java51 mCarrierText.animate().alpha(0);
54 mCarrierText.animate().alpha(1);
H A DKeyguardMultiUserSelectorView.java90 public void finalizeActiveUserView(boolean animate) { argument
91 if (animate) {
99 finalizeActiveUserNow(animate);
103 void finalizeActiveUserNow(boolean animate) { argument
105 mActiveUserAvatar.setActive(true, animate, null);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyguardUserSwitcher.java89 public void setKeyguard(boolean keyguard, boolean animate) { argument
92 show(animate);
94 hide(animate);
107 public void show(boolean animate) { argument
112 mStatusBarView.setKeyguardUserSwitcherShowing(true, animate);
113 if (animate) {
119 private void hide(boolean animate) { argument
122 if (animate) {
127 mStatusBarView.setKeyguardUserSwitcherShowing(false, animate);
134 mUserSwitcher.getChildAt(i).animate()
214 hideIfNotSimple(boolean animate) argument
[all...]
H A DBrightnessMirrorController.java50 outAnimation(mPanelHolder.animate())
56 inAnimation(mPanelHolder.animate())
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DSystemBarScrimViews.java65 mStatusBarScrimView.animate()
82 mNavBarScrimView.animate()
105 mStatusBarScrimView.animate()
113 mNavBarScrimView.animate()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationContentView.java94 mContractedChild.animate().cancel();
97 mExpandedChild.animate().cancel();
119 mContractedChild.animate().cancel();
126 selectLayout(false /* animate */, true /* force */);
127 mContractedWrapper.setDark(mDark, false /* animate */, 0 /* delay */);
132 mExpandedChild.animate().cancel();
137 selectLayout(false /* animate */, true /* force */);
153 // We only animate if we are drawn at least once, otherwise the view might animate when
164 selectLayout(mAnimate /* animate */, fals
194 selectLayout(boolean animate, boolean force) argument
[all...]
H A DStackScrollerDecorView.java89 mContent.animate()
134 mContent.animate().cancel();
H A DExpandableNotificationRow.java388 mPublicLayout.animate().cancel();
389 mPrivateLayout.animate().cancel();
408 source.animate().cancel();
409 target.animate().cancel();
410 source.animate()
420 target.animate()
/frameworks/base/tests/RenderThreadTest/src/com/example/renderthread/
H A DSubActivity.java48 child.animate().translationX(0).setDuration(MainActivity.DURATION);
52 bg.animate().alpha(1f).setDuration(MainActivity.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...]
/frameworks/base/libs/hwui/
H A DAnimatorManager.h49 uint32_t animate(TreeInfo& info);
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
H A DOverlayTest.java44 fadingButton.animate().alpha(0).setDuration(1000).withEndAction(new Runnable() {
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DPresenter.java121 view.animate().cancel();
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSearchPanelView.java171 public void show(final boolean show, boolean animate) { argument
177 if (animate) {
187 if (animate) {
198 mScrim.animate()
216 mScrim.animate()
223 public void hide(boolean animate) { argument
228 if (animate) {
334 mScrim.animate()
/frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
H A DAbstractLayoutTest.java47 animate(v);
56 public void animate(View v) { method in class:AbstractLayoutTest

Completed in 563 milliseconds

12345