File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -73,14 +73,14 @@ If you want to use custom request code, you just have to like this:
73
73
if (resultCode== Activity . RESULT_OK && data!= null )
74
74
{
75
75
photoPaths = new ArrayList<> ();
76
- photoPaths. addAll(data. getStringArrayListExtra (FilePickerConst . KEY_SELECTED_MEDIA ));
76
+ photoPaths. addAll(data. getParcelableArrayListExtra < Uri > (FilePickerConst . KEY_SELECTED_MEDIA ));
77
77
}
78
78
break ;
79
79
case FilePickerConst . REQUEST_CODE_DOC:
80
80
if (resultCode== Activity . RESULT_OK && data!= null )
81
81
{
82
82
docPaths = new ArrayList<> ();
83
- docPaths. addAll(data. getStringArrayListExtra (FilePickerConst . KEY_SELECTED_DOCS ));
83
+ docPaths. addAll(data. getParcelableArrayListExtra < Uri > (FilePickerConst . KEY_SELECTED_DOCS ));
84
84
}
85
85
break ;
86
86
}
@@ -89,7 +89,7 @@ If you want to use custom request code, you just have to like this:
89
89
```
90
90
91
91
# Builder Methods
92
-
92
+
93
93
** Android FilePicker** now has more flexibility. Supported builder methods are:
94
94
95
95
Method | Use
You can’t perform that action at this time.
0 commit comments