diff --git a/android/src/app/organicmaps/downloader/DownloaderFragment.java b/android/src/app/organicmaps/downloader/DownloaderFragment.java index e8020b8862..ae0d855f8d 100644 --- a/android/src/app/organicmaps/downloader/DownloaderFragment.java +++ b/android/src/app/organicmaps/downloader/DownloaderFragment.java @@ -18,6 +18,9 @@ import app.organicmaps.search.SearchEngine; import app.organicmaps.widget.PlaceholderView; import app.organicmaps.util.bottomsheet.MenuBottomSheetFragment; import app.organicmaps.util.bottomsheet.MenuBottomSheetItem; +import com.google.android.material.floatingactionbutton.FloatingActionButton; +import androidx.recyclerview.widget.LinearLayoutManager; + import java.util.ArrayList; import java.util.List; @@ -36,15 +39,52 @@ public class DownloaderFragment extends BaseMwmRecyclerFragment 0; + } + private void showFab() { + if (mFab != null && shouldShowFab() && !isRecyclerViewAtBottom()) { + mFab.show(); + } else { + mFab.hide(); + } + } + + private void hideFab() { + if (mFab != null && shouldShowFab() && !isRecyclerViewAtBottom()) { + mFab.hide(); + } else { + mFab.show(); + } + } + private boolean isRecyclerViewAtBottom() { + if (mRecyclerView != null) { + int visibleItemCount = mRecyclerView.getChildCount(); + int totalItemCount = mRecyclerView.getLayoutManager().getItemCount(); + int pastVisibleItems = ((LinearLayoutManager) mRecyclerView.getLayoutManager()).findFirstVisibleItemPosition(); + return (visibleItemCount + pastVisibleItems) >= totalItemCount; + } + return false; + } + private final NativeMapSearchListener mSearchListener = new NativeMapSearchListener() { @@ -108,6 +148,13 @@ public class DownloaderFragment extends BaseMwmRecyclerFragment 0) { + // Scrolling up + hideFab(); + } else if (dy < 0) { + // Scrolling down + showFab(); + } + } + }); + mSubscriberSlot = MapManager.nativeSubscribe(new MapManager.StorageCallback() { @Override @@ -137,11 +198,13 @@ public class DownloaderFragment extends BaseMwmRecyclerFragment Bool { + func handleDeepLinkAndReset() -> Bool { if let url = self.url { - return handleDeepLink(url: url) + let result = handleDeepLink(url: url) + reset() + return result } LOG(.error, "handleDeepLink is called with nil URL") return false