Procházet zdrojové kódy

Merge pull request #11817 from nextcloud/nmc/fixMediaViewEmptyState

Fix empty state for media view
Andy Scherzinger před 1 rokem
rodič
revize
db5b312b3f

+ 8 - 8
app/src/main/java/com/owncloud/android/ui/adapter/GalleryAdapter.kt

@@ -6,7 +6,7 @@
  * @author TSI-mc
  * @author TSI-mc
  * Copyright (C) 2022 Tobias Kaminsky
  * Copyright (C) 2022 Tobias Kaminsky
  * Copyright (C) 2022 Nextcloud GmbH
  * Copyright (C) 2022 Nextcloud GmbH
- * Copyright (C) 2022 TSI-mc
+ * Copyright (C) 2023 TSI-mc
  *
  *
  * This program is free software: you can redistribute it and/or modify
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as published by
  * it under the terms of the GNU Affero General Public License as published by
@@ -195,14 +195,14 @@ class GalleryAdapter(
 
 
         if (finalSortedList.isEmpty()) {
         if (finalSortedList.isEmpty()) {
             photoFragment.setEmptyListMessage(SearchType.GALLERY_SEARCH)
             photoFragment.setEmptyListMessage(SearchType.GALLERY_SEARCH)
-        } else {
-            files = finalSortedList
-                .groupBy { firstOfMonth(it.modificationTimestamp) }
-                .map { GalleryItems(it.key, transformToRows(it.value)) }
-                .sortedBy { it.date }.reversed()
-
-            Handler(Looper.getMainLooper()).post { notifyDataSetChanged() }
         }
         }
+
+        files = finalSortedList
+            .groupBy { firstOfMonth(it.modificationTimestamp) }
+            .map { GalleryItems(it.key, transformToRows(it.value)) }
+            .sortedBy { it.date }.reversed()
+
+        Handler(Looper.getMainLooper()).post { notifyDataSetChanged() }
     }
     }
 
 
     private fun transformToRows(list: List<OCFile>): List<GalleryRow> {
     private fun transformToRows(list: List<OCFile>): List<GalleryRow> {

+ 5 - 0
app/src/main/java/com/owncloud/android/ui/fragment/GalleryFragment.java

@@ -40,6 +40,7 @@ import com.owncloud.android.datamodel.FileDataStorageManager;
 import com.owncloud.android.datamodel.OCFile;
 import com.owncloud.android.datamodel.OCFile;
 import com.owncloud.android.datamodel.ThumbnailsCacheManager;
 import com.owncloud.android.datamodel.ThumbnailsCacheManager;
 import com.owncloud.android.lib.common.utils.Log_OC;
 import com.owncloud.android.lib.common.utils.Log_OC;
+import com.owncloud.android.ui.EmptyRecyclerView;
 import com.owncloud.android.ui.activity.FileDisplayActivity;
 import com.owncloud.android.ui.activity.FileDisplayActivity;
 import com.owncloud.android.ui.activity.FolderPickerActivity;
 import com.owncloud.android.ui.activity.FolderPickerActivity;
 import com.owncloud.android.ui.activity.ToolbarActivity;
 import com.owncloud.android.ui.activity.ToolbarActivity;
@@ -158,6 +159,10 @@ public class GalleryFragment extends OCFileListFragment implements GalleryFragme
 
 
         setRecyclerViewAdapter(mAdapter);
         setRecyclerViewAdapter(mAdapter);
 
 
+        //update the footer as there is no footer shown in media view
+        if (getRecyclerView() instanceof EmptyRecyclerView) {
+            ((EmptyRecyclerView) getRecyclerView()).setHasFooter(false);
+        }
 
 
         GridLayoutManager layoutManager = new GridLayoutManager(getContext(), 1);
         GridLayoutManager layoutManager = new GridLayoutManager(getContext(), 1);
         mAdapter.setLayoutManager(layoutManager);
         mAdapter.setLayoutManager(layoutManager);