Android Image Picker
No config yet highly configurable image picker for Android.
Screenshot
Download
Add this to your project's build.gradle
And add this to your module's build.gradle
change x.y.z
to version in the release page
Usage
For full example, please refer to the sample
app.
Also you can browse the issue labeled as question here
Start image picker activity
The simplest way to start
Complete features of what you can do with ImagePicker
If you want to call it outside Activity
or Fragment
, you can get the Intent
with createImagePickerIntent
Please note: handling in
onActivityResult
is not recommended since it's already deprecated in favor of the new result API
Receive result
when you're done picking images, result will be returned on launcher callback with type List<Image>
. This list cannot be null but can be empty
Camera Only
Use CameraOnlyConfig
instead of ImagePickerConfig
You also still can use the DefaultCameraModule
but discouraged to do it.