(String mimeType, CallbackContext callback)
| 259 | } |
| 260 | |
| 261 | public void getImage(String mimeType, CallbackContext callback) { |
| 262 | Intent intent = new Intent(Intent.ACTION_GET_CONTENT); |
| 263 | if (mimeType == null) mimeType = "image/*"; |
| 264 | |
| 265 | intent.addCategory(Intent.CATEGORY_OPENABLE); |
| 266 | intent.setType(mimeType); |
| 267 | activityResultCallback = callback; |
| 268 | cordova.startActivityForResult(this, intent, this.PICK_FROM_GALLERY); |
| 269 | } |
| 270 | |
| 271 | public void getStorageVolumes(CallbackContext callback) { |
| 272 | try { |