A library to pick multi images With features like setting limit and UI that goes nicely with your app theme
Sample App (On playstore) : https://play.google.com/store/apps/details?id=net.yazeed44.imagepicker.sample
This library is built-in gallery to pick multiple images or capture new photos , and retrieve the path in the code
This library is inspired by Telegram image picker
:app is the sample application
:imagepicker is the library source code
Just add the dependency to your build.gradle file
compile 'net.yazeed44.imagepicker:imagepicker:1.0.0'
Add this to your app's build.gradle file:
repositories {
maven { url 'https://dl.bintray.com/yazeed44/maven' }
}
It's easy
private void pickImages(){
//You can change many settings in builder like limit , Pick mode and colors
new Picker.Builder(this,new MyPickListener())
.build()
.startActivity();
}
private class MyPickListener implements PickListener
{
@Override
public void onPickedSuccessfully(final String[] paths)
{
doSomethingWithImages(images);
}
@Override
public void onCancel(){
//User cancled the pick activity
}
}
##Contribution
If you have any questions regarding MultiImagePicker,create an Issue
To create a new Feature request, open an issue
I'll try to answer as soon as I find the time.
Feel free to contribute to MultiImagePicker.
Either you found a bug or have created a new and awesome feature, just create a pull request.
Join in the conversation , Join us in telegram.