forked from organicmaps/organicmaps
[android] fix for hidden description label on PP
This commit is contained in:
parent
16c7a7c249
commit
ff8dd5992a
1 changed files with 5 additions and 3 deletions
|
@ -1293,19 +1293,21 @@ public class PlacePageView extends NestedScrollViewClickFixed
|
|||
|
||||
private void setPlaceDescription(@NonNull MapObject mapObject)
|
||||
{
|
||||
if (TextUtils.isEmpty(mapObject.getDescription()))
|
||||
boolean isBookmark = MapObject.isOfType(MapObject.BOOKMARK, mapObject);
|
||||
if (TextUtils.isEmpty(mapObject.getDescription()) && !isBookmark)
|
||||
{
|
||||
UiUtils.hide(mPlaceDescriptionContainer, mPlaceDescriptionHeaderContainer);
|
||||
return;
|
||||
}
|
||||
|
||||
String authorId = null;
|
||||
if (MapObject.isOfType(MapObject.BOOKMARK, mapObject))
|
||||
if (isBookmark)
|
||||
{
|
||||
Bookmark bmk = (Bookmark) mapObject;
|
||||
if (!TextUtils.isEmpty(bmk.getBookmarkDescription()))
|
||||
{
|
||||
UiUtils.hide(mPlaceDescriptionContainer, mPlaceDescriptionHeaderContainer);
|
||||
UiUtils.show(mPlaceDescriptionHeaderContainer);
|
||||
UiUtils.hide(mPlaceDescriptionContainer, mPromoDivider);
|
||||
return;
|
||||
}
|
||||
authorId = bmk.getRelatedAuthorId();
|
||||
|
|
Loading…
Add table
Reference in a new issue