Merge pull request #3596 from Sonicadvance1/fix_android_crash

[Android] Fix crash when we don't have access to a folder.
This commit is contained in:
Ryan Houdek 2016-02-22 16:15:54 -05:00
commit 6513062144

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;
}