[android] Added showing the bookmark category toolbar when show on map button is pressed on bookmark list

This commit is contained in:
alexzatsepin 2020-10-12 21:56:47 +03:00 committed by Arsentiy Milchakov
parent 6cf164f6f9
commit 519fe79237
3 changed files with 7 additions and 3 deletions

View file

@ -7,8 +7,6 @@
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout

View file

@ -2757,6 +2757,12 @@ public class MwmActivity extends BaseMwmFragmentActivity
BookmarkManager.INSTANCE.showBookmarkOnMap(bookmarkId);
}
public void showBookmarkCategoryOnMap(long categoryId)
{
setupBookmarkCategoryToolbar(categoryId);
BookmarkManager.INSTANCE.showBookmarkCategoryOnMap(categoryId);
}
private void setupBookmarkCategoryToolbar(long categoryId)
{
final BookmarkCategory category = BookmarkManager.INSTANCE.getCategoryById(categoryId);

View file

@ -1050,7 +1050,7 @@ public class Factory
public boolean run(@NonNull MwmActivity target)
{
BookmarkManager.INSTANCE.showBookmarkCategoryOnMap(mCategoryId);
target.showBookmarkCategoryOnMap(mCategoryId);
return true;
}
}