mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-20 11:18:21 +00:00
Merge "Ensure Gesture Nav Edu animation scales to fit different screen sizes" into udc-qpr-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
15b0c9ea54
@@ -226,13 +226,11 @@ abstract class TutorialController implements BackGestureAttemptCallback,
|
||||
return;
|
||||
}
|
||||
Matrix scaleMatrix = new Matrix();
|
||||
float pivotX = mScreenWidth / 2f;
|
||||
float pivotY = mScreenHeight;
|
||||
float scaleFactor = mScreenWidth / animationBoundsRect.width();
|
||||
float heightTranslate = (mScreenHeight - (scaleFactor * animationBoundsRect.height()));
|
||||
|
||||
scaleMatrix.postScale(scaleFactor, scaleFactor, pivotX, pivotY);
|
||||
scaleMatrix.postTranslate(0,
|
||||
mTutorialFragment.getDeviceProfile().heightPx - animationBoundsRect.height());
|
||||
scaleMatrix.postScale(scaleFactor, scaleFactor);
|
||||
scaleMatrix.postTranslate(0, heightTranslate);
|
||||
mAnimatedGestureDemonstration.setImageMatrix(scaleMatrix);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user