/packages/apps/Email/src/com/android/email/activity/ |
D | BannerController.java | 100 final ObjectAnimator animator = ObjectAnimator.ofPropertyValuesHolder( in slideBanner() local 102 animator.setInterpolator(INTERPOLATOR); in slideBanner() 103 mLastAnimator = animator; in slideBanner() 104 animator.start(); in slideBanner()
|
D | ThreePaneLayout.java | 475 final ObjectAnimator animator = ObjectAnimator.ofPropertyValuesHolder( in startLayoutAnimation() local 477 animator.setInterpolator(INTERPOLATOR); in startLayoutAnimation() 479 animator.addListener(listener); in startLayoutAnimation() 481 mLastAnimator = animator; in startLayoutAnimation() 483 animator.start(); in startLayoutAnimation()
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/ |
D | SearchActivityViewTwoPane.java | 148 Animator animator = ObjectAnimator.ofInt(mSearchPlate, "alpha", 0, 255); in setupEntryAnimations() local 149 animator.setDuration(ENTRY_ANIMATION_DURATION); in setupEntryAnimations() 150 ((ValueAnimator)animator).addUpdateListener(new AnimatorUpdateListener() { in setupEntryAnimations() 152 public void onAnimationUpdate(ValueAnimator animator) { in setupEntryAnimations() 155 + (int) ((Integer) animator.getAnimatedValue() / 255f in setupEntryAnimations() 160 animator.setStartDelay(ENTRY_ANIMATION_START_DELAY); in setupEntryAnimations() 161 animator.start(); in setupEntryAnimations()
|
/packages/apps/Phone/src/com/android/phone/ |
D | AnimationUtils.java | 226 ObjectAnimator animator = crossFadeDrawable.getAnimator(); in startCrossFade() local 228 animator.setDuration(ANIMATION_DURATION); in startCrossFade() 229 animator.addListener(new AnimatorListenerAdapter() { in startCrossFade() 252 animator.start(); in startCrossFade()
|
D | InCallTouchUi.java | 1086 ViewPropertyAnimator animator = mIncomingCallWidget.animate(); in hideIncomingCallWidget() local 1087 animator.cancel(); in hideIncomingCallWidget() 1088 animator.setDuration(AnimationUtils.ANIMATION_DURATION); in hideIncomingCallWidget() 1089 animator.setListener(new AnimatorListenerAdapter() { in hideIncomingCallWidget() 1119 animator.alpha(0f); in hideIncomingCallWidget() 1133 ViewPropertyAnimator animator = mIncomingCallWidget.animate(); in showIncomingCallWidget() local 1134 if (animator != null) { in showIncomingCallWidget() 1135 animator.cancel(); in showIncomingCallWidget()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
D | LatinKeyboardView.java | 389 final ObjectAnimator animator = (ObjectAnimator)AnimatorInflater.loadAnimator( in loadObjectAnimator() 391 if (animator != null) { in loadObjectAnimator() 392 animator.setTarget(target); in loadObjectAnimator() 394 return animator; in loadObjectAnimator() 859 final ObjectAnimator animator = mLanguageOnSpacebarFadeoutAnimator; in startDisplayLanguageOnSpacebar() local 860 if (animator == null) { in startDisplayLanguageOnSpacebar() 865 if (animator.isStarted()) { in startDisplayLanguageOnSpacebar() 866 animator.cancel(); in startDisplayLanguageOnSpacebar() 868 animator.start(); in startDisplayLanguageOnSpacebar() 870 if (!animator.isStarted()) { in startDisplayLanguageOnSpacebar()
|
/packages/apps/Browser/src/com/android/browser/ |
D | TabScrollView.java | 183 ObjectAnimator animator = ObjectAnimator.ofInt(this, "scroll", getScrollX(), newscroll); in animateScroll() local 184 animator.setDuration(mAnimationDuration); in animateScroll() 185 animator.start(); in animateScroll()
|
D | TabBar.java | 431 AnimatorSet animator = new AnimatorSet(); in animateTabOut() local 432 animator.playTogether(scalex, scaley, alpha); in animateTabOut() 433 animator.setDuration(150); in animateTabOut() 434 animator.addListener(new AnimatorListener() { in animateTabOut() 456 animator.start(); in animateTabOut()
|
D | TitleBar.java | 169 void setupTitleBarAnimator(Animator animator) { in setupTitleBarAnimator() argument 172 animator.setInterpolator(new DecelerateInterpolator( in setupTitleBarAnimator() 174 animator.setDuration(duration); in setupTitleBarAnimator()
|
/packages/apps/Contacts/src/com/android/contacts/detail/ |
D | ContactDetailFragmentCarousel.java | 268 final ViewPropertyAnimator animator = mUpdatesFragment.animate(); in animateAppear() local 269 animator.translationX(0.0f); in animateAppear()
|
D | ContactDetailTabCarousel.java | 281 final ViewPropertyAnimator animator = mTabAndShadowContainer.animate(); in animateAppear() local 282 animator.translationY(0.0f); in animateAppear() 283 animator.setDuration(TRANSITION_MOVE_IN_TIME); in animateAppear()
|
D | ContactDetailLayoutController.java | 300 final ViewPropertyAnimator animator = mViewContainer.animate(); in setContactData() local 301 animator.alpha(1.0f); in setContactData() 302 animator.setDuration(SINGLE_PANE_FADE_IN_DURATION); in setContactData()
|
/packages/apps/Calendar/src/com/android/calendar/ |
D | DayView.java | 3792 ObjectAnimator animator = ObjectAnimator.ofInt(this, "animateDayEventHeight", in getAllDayEventAnimator() local 3794 animator.setDuration(ANIMATION_DURATION); in getAllDayEventAnimator() 3795 return animator; in getAllDayEventAnimator() 3811 ObjectAnimator animator = ObjectAnimator.ofInt(this, "animateDayHeight", in getAllDayAnimator() local 3813 animator.setDuration(ANIMATION_DURATION); in getAllDayAnimator() 3815 animator.addListener(new AnimatorListenerAdapter() { in getAllDayAnimator() 3827 return animator; in getAllDayAnimator()
|