forked from organicmaps/organicmaps
[android] Fixed bookmark setting behavior
This commit is contained in:
parent
90847fec0e
commit
c8a1af24f0
1 changed files with 9 additions and 4 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue