How can i make a Progress bar and Progress Dialog in Android that should resemble IPhone progress bar.
views:
425answers:
1
+2
A:
Take a look at the Android documentation on Building Custom Components. Basically you should be able to do this by overriding the onDraw method and adding your own functions to set/get the state of the progress bar. Read through that article and you should have a good idea on how to get started making your own progress bar component.
Or just override the onDraw in your own ProgressBar derived class
snctln
2010-04-08 13:55:05