[android] Fixed bookmark setting behavior

This commit is contained in:
Александр Зацепин 2019-02-12 16:26:21 +03:00 committed by yoksnod
parent 90847fec0e
commit c8a1af24f0

View file

@ -571,9 +571,14 @@ public class BottomSheetPlacePageController implements PlacePageController, Loca
@Override
public void onBookmarkSet(boolean isSet)
{
if (isSet)
mPlacePageBehavior.setState(AnchorBottomSheetBehavior.STATE_ANCHORED);
else
mPlacePageBehavior.setState(AnchorBottomSheetBehavior.STATE_COLLAPSED);
if (!isSet)
return;
@AnchorBottomSheetBehavior.State
int state = mPlacePageBehavior.getState();
if (!isCollapsedState(state))
return;
mPlacePageBehavior.setState(AnchorBottomSheetBehavior.STATE_ANCHORED);
}
}