Searched defs:mScaleAnimation (Results 1 - 3 of 3) sorted by relevance

/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DIntents.java131 private boolean mScaleAnimation; field in class:Intents.PhotoViewIntentBuilder
157 mScaleAnimation = false;
250 mScaleAnimation = true;
337 mIntent.putExtra(EXTRA_SCALE_UP_ANIMATION, mScaleAnimation);
338 if (mScaleAnimation) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DExpandHelper.java94 private ObjectAnimator mScaleAnimation; field in class:ExpandHelper
169 mScaleAnimation = ObjectAnimator.ofFloat(mScaler, "height", 0f);
545 if (mScaleAnimation.isRunning()) {
546 mScaleAnimation.cancel();
551 mScaleAnimation.setFloatValues(targetHeight);
552 mScaleAnimation.setupStartValues();
555 mScaleAnimation.addListener(new AnimatorListenerAdapter() {
566 mScaleAnimation.removeListener(this);
575 mFlingAnimationUtils.apply(mScaleAnimation, currentHeight, targetHeight, velocity);
576 mScaleAnimation
[all...]
/frameworks/support/v4/java/android/support/v4/widget/
H A DSwipeRefreshLayout.java150 private Animation mScaleAnimation; field in class:SwipeRefreshLayout
403 mScaleAnimation = new Animation() {
409 mScaleAnimation.setDuration(mMediumAnimationDuration);
414 mCircleView.startAnimation(mScaleAnimation);

Completed in 124 milliseconds