Merge "Fix lock screen overlap test." into tm-qpr-dev

This commit is contained in:
Jeff DeCew
2022-06-07 16:59:29 +00:00
committed by Android (Google) Code Review

View File

@@ -229,6 +229,17 @@ public class NotificationShelf extends ActivatableNotificationView implements
mActualWidth = actualWidth;
}
@Override
public void getBoundsOnScreen(Rect outRect, boolean clipToParent) {
super.getBoundsOnScreen(outRect, clipToParent);
final int actualWidth = getActualWidth();
if (isLayoutRtl()) {
outRect.left = outRect.right - actualWidth;
} else {
outRect.right = outRect.left + actualWidth;
}
}
/**
* @return Actual width of shelf, accounting for possible ongoing width animation
*/