views:

425

answers:

1

How can i make a Progress bar and Progress Dialog in Android that should resemble IPhone progress bar.

+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