forked from organicmaps/organicmaps
[android] Fixed default behaviour for deactivation map selection when bottom sheet is hidden
This commit is contained in:
parent
9e79cae760
commit
3b8930f249
2 changed files with 4 additions and 4 deletions
|
@ -133,13 +133,13 @@ public class BottomSheetPlacePageController implements PlacePageController<MapOb
|
|||
private final AnchorBottomSheetBehavior.BottomSheetCallback mSheetCallback
|
||||
= new DefaultBottomSheetCallback(mBottomSheetChangedListener);
|
||||
|
||||
private boolean mDeactivateMapSelection;
|
||||
private boolean mDeactivateMapSelection = true;
|
||||
|
||||
private void onHiddenInternal()
|
||||
{
|
||||
if (mDeactivateMapSelection)
|
||||
Framework.nativeDeactivatePopup();
|
||||
mDeactivateMapSelection = false;
|
||||
mDeactivateMapSelection = true;
|
||||
PlacePageUtils.moveViewportUp(mPlacePage, mViewportMinHeight);
|
||||
UiUtils.invisible(mButtonsLayout);
|
||||
mPlacePageTracker.onHidden();
|
||||
|
|
|
@ -81,7 +81,7 @@ public class ElevationProfileBottomSheetController implements PlacePageControlle
|
|||
private final AnchorBottomSheetBehavior.BottomSheetCallback mSheetCallback
|
||||
= new DefaultBottomSheetCallback(mBottomSheetChangedListener);
|
||||
|
||||
private boolean mDeactivateMapSelection;
|
||||
private boolean mDeactivateMapSelection = true;
|
||||
|
||||
ElevationProfileBottomSheetController(@NonNull Activity activity,
|
||||
@NonNull SlideListener slideListener)
|
||||
|
@ -212,7 +212,7 @@ public class ElevationProfileBottomSheetController implements PlacePageControlle
|
|||
{
|
||||
if (mDeactivateMapSelection)
|
||||
Framework.nativeDeactivatePopup();
|
||||
mDeactivateMapSelection = false;
|
||||
mDeactivateMapSelection = true;
|
||||
if (UiUtils.isLandscape(mActivity))
|
||||
{
|
||||
PlacePageUtils.moveViewPortRight(mSheet, mViewPortMinWidth);
|
||||
|
|
Loading…
Add table
Reference in a new issue