forked from organicmaps/organicmaps-tmp
[android] Added showing the bookmark category toolbar when show on map button is pressed on bookmark list
This commit is contained in:
parent
6cf164f6f9
commit
519fe79237
3 changed files with 7 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -1050,7 +1050,7 @@ public class Factory
|
|||
|
||||
public boolean run(@NonNull MwmActivity target)
|
||||
{
|
||||
BookmarkManager.INSTANCE.showBookmarkCategoryOnMap(mCategoryId);
|
||||
target.showBookmarkCategoryOnMap(mCategoryId);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue