Only use inserts when available

Fixes #9509

Signed-off-by: TobiPeterG <tobi.goergens@gmail.com>
This commit is contained in:
TobiPeterG 2024-10-13 00:40:49 +02:00 committed by Viktor Havaka
parent c7094b1054
commit 3ff6be9522

View file

@ -151,6 +151,8 @@ public class PlacePageController extends Fragment implements
mPlacePageStatusBarBackground.setLayoutParams(layoutParams);
return windowInsets;
});
ViewCompat.requestApplyInsets(mPlacePage);
}
@NonNull
@ -231,7 +233,9 @@ public class PlacePageController extends Fragment implements
private void setPlacePageHeightBounds()
{
final int peekHeight = calculatePeekHeight();
final Insets insets = mCurrentWindowInsets.getInsets(WindowInsetsCompat.Type.systemBars());
final Insets insets = mCurrentWindowInsets != null
? mCurrentWindowInsets.getInsets(WindowInsetsCompat.Type.systemBars())
: Insets.NONE;
// Make sure the place page can reach the peek height
final int minHeight = Math.max(peekHeight, mFrameHeight);
// Prevent the place page from showing under the status bar