Class Overview
Populates asynchronously the file info list for internal Folder
Summary
[Expand]
Inherited Fields |
From class
android.os.AsyncTask
public
static
final
Executor |
SERIAL_EXECUTOR |
|
public
static
final
Executor |
THREAD_POOL_EXECUTOR |
|
|
[Expand]
Inherited Methods |
From class
android.os.AsyncTask
final
boolean
|
cancel(boolean arg0)
|
final
AsyncTask<Params, Progress, Result>
|
execute(Params... arg0)
|
static
void
|
execute(Runnable arg0)
|
final
AsyncTask<Params, Progress, Result>
|
executeOnExecutor(Executor arg0, Params... arg1)
|
final
Result
|
get(long arg0, TimeUnit arg1)
|
final
Result
|
get()
|
final
AsyncTask.Status
|
getStatus()
|
final
boolean
|
isCancelled()
|
|
From class
java.lang.Object
boolean
|
equals(Object arg0)
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
Public Constructors
public
PopulateFolderTask
(Context context, File folder, List<FileInfo> fileInfoList, Object fileInfoListLock, Comparator<FileInfo> sortMode, boolean acceptFiles, boolean acceptSubdirectories, boolean acceptSdCard, sdCardFolderCache, PopulateFolderTask.Callback callback)
Parameters
context |
The context |
folder |
The root folder; null if it is the root of storage |
fileInfoList |
The original list of file info |
fileInfoListLock |
The lock for the original file info list |
sortMode |
The sort mode for comparison |
acceptFiles |
False if only folders should be populated; True otherwise |
acceptSubdirectories |
True if should include sub-directories as hidden; False otherwise |
acceptSdCard |
True if SD card folders/files should be populated |
sdCardFolderCache |
The SD Card folder cache |
callback |
The callback
|