Loading quickstep/src/com/android/quickstep/interaction/TutorialController.java +3 −5 Original line number Diff line number Diff line Loading @@ -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); } Loading Loading
quickstep/src/com/android/quickstep/interaction/TutorialController.java +3 −5 Original line number Diff line number Diff line Loading @@ -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); } Loading