接口 FileDialog.OnFileTouchedListener
-
- 封闭类:
- FileDialog
public static interface FileDialog.OnFileTouchedListenerThe call back that will be run when the dialog is closed.
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 voidonCanceled()Invoked if the dialog is cancelled.voidonFileTouched(java.io.File[] files)Invoked if one or more file is to be opened/saved.
-
-
-
方法详细资料
-
onFileTouched
void onFileTouched(java.io.File[] files)
Invoked if one or more file is to be opened/saved.- 参数:
files- the files to open/save. It will contain more than one File when mode is 2(open multiple files), otherwise it will contain only one File.
-
onCanceled
void onCanceled()
Invoked if the dialog is cancelled.
-
-