Back to project page ion.
The source code is released under:
Apache License
If you think the Android project ion listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.koushikdutta.ion; //from w w w . ja v a 2 s. c o m class LoadBitmapEmitter extends LoadBitmapBase { IonRequestBuilder.EmitterTransform emitterTransform; boolean animateGif; public LoadBitmapEmitter(Ion ion, String urlKey, boolean put, boolean animateGif, IonRequestBuilder.EmitterTransform emitterTransform) { super(ion, urlKey, put); this.animateGif = animateGif; this.emitterTransform = emitterTransform; } }