coomar2841 / image-chooser-library

An Easy Image/Video Chooser Library for your Android Apps
646 stars 193 forks source link

Option to not generate thumbnails #43

Closed chris95x8 closed 9 years ago

chris95x8 commented 9 years ago

Thumbnails are not always needed, and their generation takes time and processing power. An option to disable thumbnail generation would be really helpful

coomar2841 commented 9 years ago

@chris95x8 There's a constructor for that.

public ImageChooserManager(Activity activity, int type,
            boolean shouldCreateThumbnails) {
        super(activity, type, DIRECTORY, shouldCreateThumbnails);
}
chris95x8 commented 9 years ago

@coomar2841 Hadn't noticed. Thank you, this library has saved me a lot of time!

coomar2841 commented 9 years ago

Thanks :)