Android library project for providing multiple image selection from the device.
Android library project for selecting/capturing multiple images from the device.
Eclipse library project structure has been dropped. If you wish to use this library in your eclipse IDE, please checkout eclipse-develop. No further development will be done or merged into eclipse-develop branch.
dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) // and // your // other // dependencies... }// add external respository url in addition to having // your preferred repository. repositories { // for downloading polypicker dependency cwac-camera maven { url "https://repo.commonsware.com.s3.amazonaws.com" }
// for downloading poly-picker now we are using jitpack. // Goodbye Maven Central maven { url "https://jitpack.io" }
}
dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) // your dependencies compile 'com.github.jaydeepw:poly-picker:1.0.23' }
Requires Android 4.0+.
Add camera permissions and required features to your AndroidManifest.xml
Request large heap memory using "largeHeap" attribute for your application. This will avoid application to crash on low memory devices. The side effect would be that your application may force other applications to be kicked out of memory. Nothing very severe.
. .
Declare the PolyPicker activity in your AndroidManifest.xml with some theme that is a descendent of AppCompat.
Start the PolyPicker activity and get the result back.
private void getImages() { Intent intent = new Intent(mContext, ImagePickerActivity.class); Config config = new Config.Builder() .setTabBackgroundColor(R.color.white) // set tab background color. Default white. .setTabSelectionIndicatorColor(R.color.blue) .setCameraButtonColor(R.color.green) .setSelectionLimit(2) // set photo selection limit. Default unlimited selection. .build(); ImagePickerActivity.setConfig(config); startActivityForResult(intent, INTENT_REQUEST_GET_IMAGES); }@Override protected void onActivityResult(int requestCode, int resultCode, Intent intent) { super.onActivityResult(requestCode, resultCode, intent);
if (resultCode == Activity.RESULT_OK) { if (requestCode == INTENT_REQUEST_GET_IMAGES) { Parcelable[] parcelableUris = intent.getParcelableArrayExtra(ImagePickerActivity.EXTRA_IMAGE_URIS); if (parcelableUris == null) { return; } // Java doesn't allow array casting, this is a little hack Uri[] uris = new Uri[parcelableUris.length]; System.arraycopy(parcelableUris, 0, uris, 0, parcelableUris.length); if (uris != null) { for (Uri uri : uris) { Log.i(TAG, " uri: " + uri); mMedia.add(uri); } showMedia(); } } }
}
Snapshot builds are development builds that need refining and bug fixes. Open source community can greatly help in achieveing this by testing such builds and logging issues and feedback that can make PolyPicker better, together. Add snapshot dependency to your app module's build.gradle file
repositories { // for downloading Polypicker dependency cwac-camera maven { url "https://repo.commonsware.com.s3.amazonaws.com" }// for downloading polypicker v1.0.13-SNAPSHOT maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
}
dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile 'com.android.support:appcompat-v7:21.0.+' // and other dependencies
// PolyPicker dependency. compile 'net.the4thdimension:poly-picker:1.0.13-SNAPSHOT'
}
Add camera permissions and required features to your AndroidManifest.xml
Request large heap memory using "largeHeap" attribute for your application. This will avoid application to crash on low memory devices. The side effect would be that your application may force other applications to be kicked out of memory. Nothing very severe.
. .
Declare the PolyPicker activity in your AndroidManifest.xml
Start PolyPicker activity to request images.
// start polypicker activity to grab some images. Intent intent = new Intent(mContext, ImagePickerActivity.class); Config config = new Config.Builder() .setTabBackgroundColor(R.color.white) // set tab background color. Default white. .setTabSelectionIndicatorColor(R.color.blue) .setCameraButtonColor(R.color.green) .setSelectionLimit(2) // set photo selection limit. Default unlimited selection. .build(); ImagePickerActivity.setConfig(config); startActivityForResult(intent, INTENT_REQUEST_GET_IMAGES);// parse images returned by polypicker @Override protected void onActivityResult(int requestCode, int resuleCode, Intent intent) { super.onActivityResult(requestCode, resuleCode, intent);
if (resuleCode == Activity.RESULT_OK) { if (requestCode == INTENT_REQUEST_GET_IMAGES) { Parcelable[] parcelableUris = intent.getParcelableArrayExtra(ImagePickerActivity.EXTRA_IMAGE_URIS); if (parcelableUris == null) { return; } // Java doesn't allow array casting, this is a little hack Uri[] uris = new Uri[parcelableUris.length]; System.arraycopy(parcelableUris, 0, uris, 0, parcelableUris.length); if (uris != null) { for (Uri uri : uris) { Log.i(TAG, " uri: " + uri); mMedia.add(uri); } showMedia(); } } }
}
Please fork this repository and contribute back using pull requests.
Please follow Android code style guide
This project is inspired by and modified from an existing project mentioned below. android-multiple-image-picker
Dealing with camera on variety of hardware and fragmentation in underlying software is difficult. CommonsGuy's library Cwac Camera helped handle it better in this project
Using Bitcoins: If this project has helped you understand issues, be productive by using this library in your app or just being nice with me, you can always donate me Bitcoins at this address
3QJEmgqXsT1CFLtURYWxzmww59DdKYVwNk
Using Paypal: Pay Jay