Git Product home page Git Product logo

android-ultra-photo-selector's Introduction

Android-Ultra-Photo-Selector

Select images from Android devices made easy :-) In preview you can also Zoom images. You can select images from different albums on your mobil phone. Selection image result is also preserved. See AndroidManifest.xml for more details.

		Intent intent = new Intent(context, activity);
	intent.putExtra(PhotoSelectorActivity.KEY_MAX, maxImage);
	intent.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);
	context.startActivityForResult(intent, requestCode);
	
	@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
	if (resultCode != RESULT_OK)
		return;
	if (requestCode == SELECT_IMAGE_CODE) {// selected image
		if (data != null && data.getExtras() != null) {
			@SuppressWarnings("unchecked")
			List<PhotoModel> photos = (List<PhotoModel>) data.getExtras().getSerializable("photos");
			if (photos == null || photos.isEmpty()) {
				UIHelper.ToastMessage(this, R.string.no_photo_selected);
			} else {
				Intent intent = new Intent(this, YourOwnLogic.class);
				Bundle b = new Bundle();
				b.putSerializable("album_pojo", albumPojo);
				b.putSerializable("photos", (Serializable) photos);
				intent.putExtras(b);
				startActivity(intent);
				finish();
			}
		}
	}
  • Select Images from Album

Select Images

  • Browsing all device folders that has images

Browse Albums

  • Preview selected images, Zoom also supported

Preview selected Images

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.