forked from organicmaps/organicmaps
Only use inserts when available
Fixes #9509 Signed-off-by: TobiPeterG <tobi.goergens@gmail.com>
This commit is contained in:
parent
c7094b1054
commit
3ff6be9522
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue