mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-03-05 02:16:49 +00:00
separate enforceContainerWithinScreen logic to a private method
Change-Id: Ifcf8c6a79286269646a845b5be6cfa92b64fcbcc
This commit is contained in:
@@ -402,9 +402,14 @@ public class PopupContainerWithArrow extends AbstractFloatingView implements Dra
|
||||
@Override
|
||||
protected void onLayout(boolean changed, int l, int t, int r, int b) {
|
||||
super.onLayout(changed, l, t, r, b);
|
||||
enforceContainedWithinScreen(l, r);
|
||||
|
||||
}
|
||||
|
||||
private void enforceContainedWithinScreen(int left, int right) {
|
||||
DragLayer dragLayer = mLauncher.getDragLayer();
|
||||
if (getTranslationX() + l < 0 ||
|
||||
getTranslationX() + l + getMeasuredWidth() > dragLayer.getWidth()) {
|
||||
if (getTranslationX() + left < 0 ||
|
||||
getTranslationX() + right > dragLayer.getWidth()) {
|
||||
// If we are still off screen, center horizontally too.
|
||||
mGravity |= Gravity.CENTER_HORIZONTAL;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user