| 249 | } |
| 250 | |
| 251 | public void openDocumentFile(String mimeType, CallbackContext callback) { |
| 252 | Intent intent = new Intent(); |
| 253 | if (mimeType == null) mimeType = "*/*"; |
| 254 | intent.setAction(Intent.ACTION_OPEN_DOCUMENT); |
| 255 | intent.addCategory(Intent.CATEGORY_OPENABLE); |
| 256 | intent.setType(mimeType); |
| 257 | activityResultCallback = callback; |
| 258 | cordova.startActivityForResult(this, intent, this.OPEN_DOCUMENT); |
| 259 | } |
| 260 | |
| 261 | public void getImage(String mimeType, CallbackContext callback) { |
| 262 | Intent intent = new Intent(Intent.ACTION_GET_CONTENT); |