I have a logo image that I would like to use in my progress bar. Each time an image is downloaded, my progress bar creeps up using a blue bar. However, I would prefer that it slowly display my logo image, one bit at a time. I tried:
android:progressDrawable="@drawable/logo"
but that just set the entire progress bar immediately to my image. I also tried setting it dynamically with:
progressBar.setProgressDrawable(getResources()...etc)
but this just left me with no view and a black empty space.
Can be done?