/Android-Camera-Thumbnail

Android Camera Library with Thumbnail - reusable library

Primary LanguageJava

Synopsis

This is a reusable simple android library which opens camera screen & captures the images as thumnail in the same screen and then save will send list of images as Bitmap array to the caller.

Build Status License

This how it works

Code Example

	Intent i = new Intent(ma, CameraIntent.class);
    startActivityForResult (i, 110);

	protected void onActivityResult(int requestCode, int resultCode, Intent data) {
		if (resultCode == Activity.RESULT_OK && requestCode == 110) {
			for (Bitmap bm: GlobalConfig.imgs) {
				// Get all images
			}
		}
	}

Installation

gradle: compile 'co.immanuel:camerathumb:0.8'

API Reference

Contributors

raj@immanuel.co

License

MIT License