Home
last modified time | relevance | path

Searched refs:animate (Results 1 – 25 of 163) sorted by relevance

1234567

/frameworks/support/v4/ics/android/support/v4/view/
DViewPropertyAnimatorCompatICS.java26 view.animate().setDuration(value); in setDuration()
30 view.animate().alpha(value); in alpha()
34 view.animate().translationX(value); in translationX()
38 view.animate().translationY(value); in translationY()
42 return view.animate().getDuration(); in getDuration()
46 view.animate().setInterpolator(value); in setInterpolator()
50 view.animate().setStartDelay(value); in setStartDelay()
54 return view.animate().getStartDelay(); in getStartDelay()
58 view.animate().alphaBy(value); in alphaBy()
62 view.animate().rotation(value); in rotation()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNavigationBarTransitions.java61 public void transitionTo(int mode, boolean animate) { in transitionTo() argument
71 super.transitionTo(mode, animate); in transitionTo()
75 protected void onTransition(int oldMode, int newMode, boolean animate) { in onTransition() argument
76 super.onTransition(oldMode, newMode, animate); in onTransition()
77 applyMode(newMode, animate, false /*force*/); in onTransition()
80 private void applyMode(int mode, boolean animate, boolean force) { in applyMode() argument
83 setKeyButtonViewQuiescentAlpha(mView.getHomeButton(), alpha, animate); in applyMode() local
84 setKeyButtonViewQuiescentAlpha(mView.getRecentsButton(), alpha, animate); in applyMode() local
85 setKeyButtonViewQuiescentAlpha(mView.getMenuButton(), alpha, animate); in applyMode() local
86 setKeyButtonViewQuiescentAlpha(mView.getImeSwitchButton(), alpha, animate); in applyMode() local
[all …]
DBarTransitions.java73 public void transitionTo(int mode, boolean animate) { in transitionTo() argument
86 modeToString(oldMode), modeToString(mode), animate)); in transitionTo()
87 onTransition(oldMode, mMode, animate); in transitionTo()
90 protected void onTransition(int oldMode, int newMode, boolean animate) { in onTransition() argument
92 applyModeBackground(oldMode, newMode, animate); in onTransition()
96 protected void applyModeBackground(int oldMode, int newMode, boolean animate) { in applyModeBackground() argument
98 modeToString(oldMode), modeToString(newMode), animate)); in applyModeBackground()
99 mBarBackground.applyModeBackground(oldMode, newMode, animate); in applyModeBackground()
173 public void applyModeBackground(int oldMode, int newMode, boolean animate) { in applyModeBackground() argument
176 mAnimating = animate; in applyModeBackground()
[all …]
DPhoneStatusBarTransitions.java76 protected void onTransition(int oldMode, int newMode, boolean animate) { in onTransition() argument
77 super.onTransition(oldMode, newMode, animate); in onTransition()
78 applyMode(newMode, animate); in onTransition()
81 private void applyMode(int mode, boolean animate) { in applyMode() argument
88 if (animate) { in applyMode()
DKeyguardStatusBarView.java175 public void setKeyguardUserSwitcherShowing(boolean showing, boolean animate) { in setKeyguardUserSwitcherShowing() argument
177 if (animate) { in setKeyguardUserSwitcherShowing()
194 mSystemIconsSuperContainer.animate() in animateNextLayoutChange()
202 mMultiUserSwitch.animate() in animateNextLayoutChange()
218 mMultiUserSwitch.animate() in animateNextLayoutChange()
234 mSystemIconsSuperContainer.animate().cancel(); in setVisibility()
235 mMultiUserSwitch.animate().cancel(); in setVisibility()
DKeyguardAffordanceHelper.java398 boolean animate, boolean slowRadiusAnimation) {
403 updateIconAlpha(view, alpha, animate);
406 private void updateIconAlpha(KeyguardAffordanceView view, float alpha, boolean animate) {
409 view.setImageAlpha(alpha, animate);
410 view.setImageScale(scale, animate);
449 public void reset(boolean animate) {
453 setTranslation(0.0f, true, animate);
DNotificationPanelView.java363 boolean animate = mNotificationStackScroller.isAddOrRemoveAnimationPending(); in positionClockAndNotifications()
381 if (animate || mClockAnimator != null) { in positionClockAndNotifications()
391 requestScrollerTopPaddingUpdate(animate); in positionClockAndNotifications()
946 mHeader.animate()
983 mKeyguardStatusBar.animate() in animateKeyguardStatusBarOut()
1004 mKeyguardStatusBar.animate() in animateKeyguardStatusBarIn()
1023 mKeyguardBottomArea.animate().cancel(); in setKeyguardBottomAreaVisibility()
1024 mKeyguardBottomArea.animate() in setKeyguardBottomAreaVisibility()
1033 mKeyguardBottomArea.animate().cancel(); in setKeyguardBottomAreaVisibility()
1037 mKeyguardBottomArea.animate().cancel(); in setKeyguardBottomAreaVisibility()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DKeyguardUserSwitcher.java89 public void setKeyguard(boolean keyguard, boolean animate) { in setKeyguard() argument
92 show(animate); in setKeyguard()
94 hide(animate); in setKeyguard()
107 public void show(boolean animate) { in show() argument
112 mStatusBarView.setKeyguardUserSwitcherShowing(true, animate); in show()
113 if (animate) { in show()
119 private void hide(boolean animate) { in hide() argument
122 if (animate) { in hide()
127 mStatusBarView.setKeyguardUserSwitcherShowing(false, animate); in hide()
134 mUserSwitcher.getChildAt(i).animate().cancel(); in cancelAnimations()
[all …]
/frameworks/support/v4/jellybean/android/support/v4/view/
DViewPropertyAnimatorCompatJB.java25 view.animate().withStartAction(runnable); in withStartAction()
29 view.animate().withEndAction(runnable); in withEndAction()
33 view.animate().withLayer(); in withLayer()
39 view.animate().setListener(new AnimatorListenerAdapter() { in setListener()
56 view.animate().setListener(null); in setListener()
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
DPreviewPageFrame.java66 public void setSelected(boolean selected, boolean animate) { in setSelected() argument
72 if (animate) { in setSelected()
73 animate().translationZ(mSelectedElevation) in setSelected()
80 if (animate) { in setSelected()
81 animate().translationZ(mNotSelectedElevation) in setSelected()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationContentView.java94 mContractedChild.animate().cancel(); in reset()
97 mExpandedChild.animate().cancel(); in reset()
119 mContractedChild.animate().cancel(); in setContractedChild()
132 mExpandedChild.animate().cancel(); in setExpandedChild()
194 private void selectLayout(boolean animate, boolean force) { in selectLayout() argument
200 if (animate && mExpandedChild != null) { in selectLayout()
218 mContractedChild.animate() in runSwitchAnimation()
222 mExpandedChild.animate() in runSwitchAnimation()
DKeyguardAffordanceView.java350 public void setImageScale(float imageScale, boolean animate) { in setImageScale() argument
351 setImageScale(imageScale, animate, -1, null); in setImageScale()
363 public void setImageScale(float imageScale, boolean animate, long duration, in setImageScale() argument
366 if (!animate) { in setImageScale()
397 public void setImageAlpha(float alpha, boolean animate) { in setImageAlpha() argument
398 setImageAlpha(alpha, animate, -1, null, null); in setImageAlpha()
410 public void setImageAlpha(float alpha, boolean animate, long duration, in setImageAlpha() argument
415 if (!animate) { in setImageAlpha()
DExpandableNotificationRow.java388 mPublicLayout.animate().cancel(); in setHideSensitive()
389 mPrivateLayout.animate().cancel(); in setHideSensitive()
408 source.animate().cancel(); in animateShowingPublic()
409 target.animate().cancel(); in animateShowingPublic()
410 source.animate() in animateShowingPublic()
420 target.animate() in animateShowingPublic()
/frameworks/base/core/java/android/widget/
DViewAnimator.java151 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()
351 public void setAnimateFirstView(boolean animate) { in setAnimateFirstView() argument
352 mAnimateFirstTime = animate; in setAnimateFirstView()
DAdapterViewAnimator.java269 void transformViewForTransition(int fromIndex, int toIndex, View view, boolean animate) { in transformViewForTransition() argument
301 private void setDisplayedChild(int whichChild, boolean animate) { in setDisplayedChild() argument
312 showOnly(mWhichChild, animate); in setDisplayedChild()
460 void showOnly(int childIndex, boolean animate) { in showOnly() argument
514 transformViewForTransition(oldRelativeIndex, -1, previousView, animate); in showOnly()
542 transformViewForTransition(oldRelativeIndex, newRelativeIndex, view, animate); in showOnly()
563 transformViewForTransition(-1, newRelativeIndex, fl, animate); in showOnly()
941 public void setAnimateFirstView(boolean animate) { in setAnimateFirstView() argument
942 mAnimateFirstTime = animate; in setAnimateFirstView()
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
DIconPulser.java38 target.animate().cancel(); in start()
39 target.animate().scaleX(PULSE_SCALE).scaleY(PULSE_SCALE) in start()
44 target.animate().scaleX(1).scaleY(1).setListener(null); in start()
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
DKeyguardMultiUserSelectorView.java90 public void finalizeActiveUserView(boolean animate) { in finalizeActiveUserView() argument
91 if (animate) { in finalizeActiveUserView()
99 finalizeActiveUserNow(animate); in finalizeActiveUserView()
103 void finalizeActiveUserNow(boolean animate) { in finalizeActiveUserNow() argument
105 mActiveUserAvatar.setActive(true, animate, null); in finalizeActiveUserNow()
DEmergencyCarrierArea.java51 mCarrierText.animate().alpha(0); in onFinishInflate()
54 mCarrierText.animate().alpha(1); in onFinishInflate()
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
DSystemBarScrimViews.java65 mStatusBarScrimView.animate() in startEnterRecentsAnimation()
82 mNavBarScrimView.animate() in startEnterRecentsAnimation()
105 mStatusBarScrimView.animate() in startExitRecentsAnimation()
113 mNavBarScrimView.animate() in startExitRecentsAnimation()
DTaskView.java299 animate().alpha(1f) in startEnterRecentsAnimation()
327 animate().translationZ(transform.translationZ); in startEnterRecentsAnimation()
329 animate() in startEnterRecentsAnimation()
363 mActionButtonView.animate().alpha(1f) in fadeInActionButton()
373 animate() in startExitToHomeAnimation()
402 mActionButtonView.animate() in startLaunchTaskAnimation()
406 mActionButtonView.animate() in startLaunchTaskAnimation()
419 animate().alpha(0f) in startLaunchTaskAnimation()
435 animate().translationX(mConfig.taskViewRemoveAnimTranslationXPx) in startDeleteTaskAnimation()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DSearchPanelView.java171 public void show(final boolean show, boolean animate) { in show() argument
177 if (animate) { in show()
187 if (animate) { in show()
198 mScrim.animate() in startEnterAnimation()
216 mScrim.animate() in startAbortAnimation()
223 public void hide(boolean animate) { in hide() argument
228 if (animate) { in hide()
334 mScrim.animate() in startExitAnimation()
/frameworks/base/tests/RenderThreadTest/src/com/example/renderthread/
DSubActivity.java48 child.animate().translationX(0).setDuration(MainActivity.DURATION); in onResume()
52 bg.animate().alpha(1f).setDuration(MainActivity.DURATION); in onResume()
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
DImageCardView.java109 mImageView.animate().cancel(); in setMainImage()
117 mImageView.animate().cancel(); in setMainImage()
223 mImageView.animate().alpha(1f).setDuration(mImageView.getResources().getInteger( in fadeIn()
258 mImageView.animate().cancel(); in onDetachedFromWindow()
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
DAbsSpinnerCompat.java250 public void setSelection(int position, boolean animate) { in setSelection() argument
252 boolean shouldAnimate = animate && mFirstPosition <= position && in setSelection()
272 void setSelectionInt(int position, boolean animate) { in setSelectionInt() argument
277 layout(delta, animate); in setSelectionInt()
282 abstract void layout(int delta, boolean animate); in layout() argument
/frameworks/base/graphics/java/android/graphics/drawable/
DAnimationDrawable.java256 private void setFrame(int frame, boolean unschedule, boolean animate) { in setFrame() argument
260 mAnimating = animate; in setFrame()
263 if (unschedule || animate) { in setFrame()
266 if (animate) { in setFrame()

1234567