Back to project page cube-sdk.
The source code is released under:
Apache License
If you think the Android project cube-sdk 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 in.srain.cube.image.iface; // w w w . ja va 2s.com import in.srain.cube.image.CubeImageView; import in.srain.cube.image.ImageTask; /** * Define load progress */ public interface ImageLoadProgressHandler { void onProgressChange(ImageTask imageTask, CubeImageView cubeImageView, int loaded, int total); }