I'm using Universal Image Loader to load a previous image before the official one in my catalog.
But as a request from my boss, I have to insert a native ProgressBar before the loading of all official images in the app.
Universal Image Loader provides in the displayImage() method, a way using a SimpleImageLoadingListener to do that. That's ok and works fine. But I had to call it all over my app.
Is there a way I can draw(copy) the native ProgressBar image and make it rotate as an animation? If this is possible as a 'drawable', I could just change one line in my UIL coonfigs:
IMAGE_OPTIONS = new DisplayImageOptions.Builder() //
.showImageOnLoading(R.drawable.mynativeandanimatedprogressbar)
ETC ETC ETC
Thanks in advance, I really appreciate any help.
bye