这里我想调用sortByDateModified()
函数并在该函数中包含行Arrays.sort(files, filecomparatorByLastModified)
。但是Arrays.sort(files, filecomparatorByLastModified)
行位于public void getDir(String dirPath)
中的另一个函数中。如何从函数中调用另一个函数的子函数...
public void onClick(View v) { sortByDateModified(); }
public void getDir(String dirPath) {
myPath.setText("Location: " + dirPath);
item = new ArrayList<String>();
path = new ArrayList<String>();
File f = new File(dirPath);
File[] files = f.listFiles();
if(!dirPath.equals(root)) {
item.add(root);
path.add(root);
item.add("../");
path.add(f.getParent());
}
Arrays.sort(files, filecomparatorByLastModified);
Arrays.sort(files, filecomparator);
for(int i=0; i < files.length; i++) {
File file = files[i];
if(!file.isHidden() && file.canRead()){
path.add(file.getPath());
if(file.isDirectory()){
item.add(file.getName() + "/");
}
else { item.add(file.getName()); }
}
}
ArrayAdapter<String> fileList = new ArrayAdapter<String>(this, R.layout.row, item);
setListAdapter(fileList);
}
答案 0 :(得分:0)
最终,您必须共享目录或文件数组变量。
File[] fileList = null;
public void methodLikeOnCreateOrConstructor( String dirPath )
{
//needs to be initialized before onClick could be called
fileList = getDir( dirPath );
}
public void onClick(View v) {
Arrays.sort(fileList, filecomparatorByLastModified);
}
public void getDir( String dirPath )
{
//...
File f = new File( dirPath );
files = f.listFiles();
//...
}