Home | History | Annotate | Download | only in com.example.android.wearable.speaker

Lines Matching defs:startBounds

85         final Rect startBounds = new Rect();
88 thumbView.getGlobalVisibleRect(startBounds);
90 startBounds.offset(-globalOffset.x, -globalOffset.y);
94 > (float) startBounds.width() / startBounds.height()) {
95 startScale = (float) startBounds.height() / finalBounds.height();
97 float deltaWidth = (startWidth - startBounds.width()) / 2;
98 startBounds.left -= deltaWidth;
99 startBounds.right += deltaWidth;
101 startScale = (float) startBounds.width() / finalBounds.width();
103 float deltaHeight = (startHeight - startBounds.height()) / 2;
104 startBounds.top -= deltaHeight;
105 startBounds.bottom += deltaHeight;
118 .ofFloat(expandedImageView, View.X, startBounds.left, finalBounds.left)).with(
119 ObjectAnimator.ofFloat(expandedImageView, View.Y, startBounds.top, finalBounds
152 .ofFloat(expandedImageView, View.X, startBounds.left))
155 View.Y, startBounds.top))