[Android] Fix crash when we don't have access to a folder.

This commit is contained in:
Ryan Houdek 2016-02-05 22:03:33 -06:00
parent bd713643d1
commit 07434e3a65

View file

@ -159,7 +159,13 @@ public final class FileAdapter extends RecyclerView.Adapter<FileViewHolder> impl
private ArrayList<FileListItem> generateFileList(File directory)
{
File[] children = directory.listFiles();
ArrayList<FileListItem> fileList = new ArrayList<FileListItem>(children.length);
mPath = directory.getAbsolutePath();
ArrayList<FileListItem> fileList = new ArrayList<FileListItem>(0);
if (children != null)
{
fileList = new ArrayList<FileListItem>(children.length);
for (File child : children)
{
@ -170,9 +176,8 @@ public final class FileAdapter extends RecyclerView.Adapter<FileViewHolder> impl
}
}
mPath = directory.getAbsolutePath();
Collections.sort(fileList);
}
return fileList;
}