forked from organicmaps/organicmaps
[android] Fixed doubling sharing category dialog.
This commit is contained in:
parent
74b1d0593f
commit
83aa0c78b5
2 changed files with 11 additions and 11 deletions
|
@ -40,7 +40,6 @@ public abstract class BaseBookmarkCategoriesFragment extends BaseMwmRecyclerFrag
|
|||
implements EditTextDialogFragment.EditTextDialogInterface,
|
||||
MenuItem.OnMenuItemClickListener,
|
||||
BookmarkManager.BookmarksLoadingListener,
|
||||
BookmarkManager.BookmarksSharingListener,
|
||||
CategoryListCallback,
|
||||
KmlImportController.ImportKmlCallback,
|
||||
OnItemClickListener<BookmarkCategory>,
|
||||
|
@ -125,7 +124,6 @@ public abstract class BaseBookmarkCategoriesFragment extends BaseMwmRecyclerFrag
|
|||
{
|
||||
super.onStart();
|
||||
BookmarkManager.INSTANCE.addLoadingListener(this);
|
||||
BookmarkManager.INSTANCE.addSharingListener(this);
|
||||
BookmarkManager.INSTANCE.addCatalogListener(mCatalogListener);
|
||||
}
|
||||
|
||||
|
@ -134,7 +132,6 @@ public abstract class BaseBookmarkCategoriesFragment extends BaseMwmRecyclerFrag
|
|||
{
|
||||
super.onStop();
|
||||
BookmarkManager.INSTANCE.removeLoadingListener(this);
|
||||
BookmarkManager.INSTANCE.removeSharingListener(this);
|
||||
BookmarkManager.INSTANCE.removeCatalogListener(mCatalogListener);
|
||||
}
|
||||
|
||||
|
@ -232,12 +229,6 @@ public abstract class BaseBookmarkCategoriesFragment extends BaseMwmRecyclerFrag
|
|||
// Do nothing here.
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onPreparedFileForSharing(@NonNull BookmarkSharingResult result)
|
||||
{
|
||||
SharingHelper.INSTANCE.onPreparedFileForSharing(getActivity(), result);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onFooterClick()
|
||||
{
|
||||
|
|
|
@ -12,11 +12,13 @@ import com.mapswithme.maps.auth.Authorizer;
|
|||
import com.mapswithme.maps.auth.TargetFragmentCallback;
|
||||
import com.mapswithme.maps.bookmarks.data.BookmarkCategory;
|
||||
import com.mapswithme.maps.bookmarks.data.BookmarkManager;
|
||||
import com.mapswithme.maps.bookmarks.data.BookmarkSharingResult;
|
||||
import com.mapswithme.maps.widget.BookmarkBackupView;
|
||||
import com.mapswithme.util.UiUtils;
|
||||
import com.mapswithme.util.sharing.SharingHelper;
|
||||
|
||||
public class BookmarkCategoriesFragment extends BaseBookmarkCategoriesFragment
|
||||
implements TargetFragmentCallback, AuthCompleteListener
|
||||
implements TargetFragmentCallback, AuthCompleteListener, BookmarkManager.BookmarksSharingListener
|
||||
{
|
||||
@Nullable
|
||||
private BookmarkBackupController mBackupController;
|
||||
|
@ -27,15 +29,21 @@ public class BookmarkCategoriesFragment extends BaseBookmarkCategoriesFragment
|
|||
Authorizer authorizer = new Authorizer(this);
|
||||
BookmarkBackupView backupView = view.findViewById(R.id.backup);
|
||||
|
||||
|
||||
mBackupController = new BookmarkBackupController(requireActivity(), backupView, authorizer,
|
||||
this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onPreparedFileForSharing(@NonNull BookmarkSharingResult result)
|
||||
{
|
||||
SharingHelper.INSTANCE.onPreparedFileForSharing(requireActivity(), result);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onStart()
|
||||
{
|
||||
super.onStart();
|
||||
BookmarkManager.INSTANCE.addSharingListener(this);
|
||||
if (mBackupController != null)
|
||||
mBackupController.onStart();
|
||||
}
|
||||
|
@ -52,6 +60,7 @@ public class BookmarkCategoriesFragment extends BaseBookmarkCategoriesFragment
|
|||
public void onStop()
|
||||
{
|
||||
super.onStop();
|
||||
BookmarkManager.INSTANCE.removeSharingListener(this);
|
||||
if (mBackupController != null)
|
||||
mBackupController.onStop();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue