Fixed. Footer message should be showed in the list view mode. Also added in grid...
[pub/Android/ownCloud.git] / src / com / owncloud / android / ui / fragment / OCFileListFragment.java
index 4e65cac..4b3d6f8 100644 (file)
@@ -395,13 +395,12 @@ public class OCFileListFragment extends ExtendedListFragment {
             mFile = directory;
 
             Vector<OCFile> files = storageManager.getFolderContent(directory);
+            // Update Footer
+            TextView footerText = (TextView) mFooterView.findViewById(R.id.footerText);
+            footerText.setText(generateFooterText(directory));
             if (DisplayUtils.decideViewLayout(files)){
                 switchImageView();
             } else {
-                // Update Footer
-                TextView footerText = (TextView) mFooterView.findViewById(R.id.footerText);
-                footerText.setText(generateFooterText(directory));
-
                 switchFileView();
             }
         }