I want to create a progress bar (intermediate progress bar) similar to gmail app which change colours.I am able to this by keeping and updating progress_indeterminate_horizo
This is what you are looking for. Add this library in your project and you'll be able to use it.
Then you'll be able to use it as a normal processbar. Example:
private SmoothProgressBar mProgressBar;
OnCreate:
mProgressBar = (SmoothProgressBar) findViewById(R.id.progressbar);
mProgressBar.progressiveStart();
OnPause:
mProgressBar.progressiveStop();