We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e9c881c + 2635750 commit 062e01cCopy full SHA for 062e01c
policy/src/com/android/internal/policy/impl/keyguard/KeyguardWidgetPager.java
@@ -770,6 +770,9 @@ void zoomOutToBouncer() {
770
}
771
View currentPage = getPageAt(getCurrentPage());
772
currentPage.setPivotY(0);
773
+ // Note: we are working around the issue that setting the x-pivot to the same value as it
774
+ // was does not actually work.
775
+ currentPage.setPivotX(0);
776
currentPage.setPivotX(currentPage.getMeasuredWidth() / 2);
777
if (!(currentPage.getScaleX() < 1f || currentPage.getScaleY() < 1f)) {
778
mZoomInOutAnim = new AnimatorSet();
0 commit comments