Searched refs:startScale (Results 1 – 5 of 5) sorted by relevance
/frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/ |
D | Scale.java | 56 final float startScale = (Float) startValues.values.get(PROPNAME_SCALE); in createAnimator() local 60 view.setScaleX(startScale); in createAnimator() 61 view.setScaleY(startScale); in createAnimator() 63 ValueAnimator animator = ValueAnimator.ofFloat(startScale, endScale); in createAnimator()
|
/frameworks/base/docs/html/training/animation/ |
D | zoom.jd | 226 float startScale; 230 startScale = (float) startBounds.height() / finalBounds.height(); 231 float startWidth = startScale * finalBounds.width(); 237 startScale = (float) startBounds.width() / finalBounds.width(); 238 float startHeight = startScale * finalBounds.height(); 265 startScale, 1f)).with(ObjectAnimator.ofFloat(expandedImageView, 266 View.SCALE_Y, startScale, 1f)); 286 final float startScaleFinal = startScale;
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | LockPatternView.java | 427 float startTranslationY, float endTranslationY, float startScale, float endScale, in startCellStateAnimation() argument 432 endTranslationY, startScale, endScale, delay, duration, interpolator, in startCellStateAnimation() 436 endTranslationY, startScale, endScale, delay, duration, interpolator, in startCellStateAnimation() 444 final float startScale, final float endScale, in startCellStateAnimationSw() argument 448 cellState.radius = mDotSize/2 * startScale; in startCellStateAnimationSw() 459 cellState.radius = mDotSize/2 * ((1 - t) * startScale + t * endScale); in startCellStateAnimationSw() 477 float startScale, float endScale, in startCellStateAnimationHw() argument 486 cellState.hwRadius = CanvasProperty.createFloat(mDotSize/2 * startScale); in startCellStateAnimationHw()
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/ |
D | PhotoView.java | 1184 public boolean start(float startScale, float targetScale, float centerX, float centerY) { in start() argument 1195 mStartScale = startScale; in start()
|
/frameworks/support/v4/java/android/support/v4/app/ |
D | FragmentManager.java | 852 static Animation makeOpenCloseAnimation(Context context, float startScale, in makeOpenCloseAnimation() argument 855 ScaleAnimation scale = new ScaleAnimation(startScale, endScale, startScale, endScale, in makeOpenCloseAnimation()
|