GithubHelp home page GithubHelp logo

xifan-xf / android-ultra-photo-selector Goto Github PK

View Code? Open in Web Editor NEW

This project forked from aizazzaidee/android-ultra-photo-selector

1.0 2.0 0.0 10.73 MB

Replace UIL with Glide loading pic more smooth.Add take picture entry at first item in gridview.

Java 100.00%

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. I am using UIL, so you can configure image caching your own way, if you want to change. on your mobil phone. Selection image result is also preserved. See AndroidManifest.xml for more details.

	    Intent intent = new Intent(context,PhotoSelectorActivity.class);
                intent.putExtra(PhotoSelectorActivity.KEY_MAX, maxImage);
                //selected photos
                intent.putExtra("photos", mPhotos);
                //before take photo make a uri to store it
                photoUri = PhotoSelectorActivity.getUri(getActivity());
                intent.putExtra("photoUri", photoUri);
                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();
			}
		}else{
		 if (photoUri != null) {
		 	//notify after take photo from camera
                		new MediaScannerNotifier(context, photoUri.getPath(),"image/*");
                		//method to get photo path from uri
                		String picPath=Utils.query(context,photoUri);
                		//TODO manager your own thing
                		...
            }
		}
	}
  • Select Images from Album

Select Images

  • Browsing all device folders that have images

Browse Albums

  • Preview & zoom selected images

Preview selected Images

android-ultra-photo-selector's People

Contributors

aizazzaidee avatar xifan-xf avatar

Stargazers

 avatar

Watchers

James Cloos avatar  avatar

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.