Spent half day to understand how to change some styles to progress dialog , but I am not able to do so.
Very simple thing I wanted to start with, change the spinner color in progress dialog to some other color other than white ! , Got stuck here itself.
In Android SDK , they are using some image and applying animation to it , I will have to do everything from scratch to change the color of the spinner ?
Any good examples where progress dialog has been modified would be helpful , I have seen in documentation , google search results upto 4-6 pages :) , still not able to get it.
Any interesting way to show progress dialog other than default one ?
I would appreciate if someone can provide good blog on Applying themes and styles , which explains in detail.
Some code which I am using,
dialog1 = new ProgressDialog(this); dialog1 = ProgressDialog.show(this, "", "Loading. Please wait...", true);
Trying to do lot with dialog1, but not getting any desired result.
Thank you