[android] Fixed default behaviour for deactivation map selection when bottom sheet is hidden

This commit is contained in:
Александр Зацепин 2020-02-17 16:38:05 +03:00 committed by yoksnod
parent 9e79cae760
commit 3b8930f249
2 changed files with 4 additions and 4 deletions

View file

@ -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();

View file

@ -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);