I want to create a progress bar as specified in the image. I’ve very little idea about how to create a custom view. I checked a lot of tutorials, but couldn’t find a starting point. I’ve no images regarding the progressbar. I’m supposed to draw it. I tried overriding the ondraw method, but I was unable to get the exact look.
Here is the image : 
Thanks for your help
First off, you will only need one image of your loading arcs as they are replicable.
http://developer.android.com/guide/topics/ui/custom-components.html
You will need to create your own method to receive some sort of value indicating the loading progress, and then redraw accordingly.
For example:
I hope this helps. =)