I have a progressBar using the ProgressBar class.
Just doing this:
progressBar = new ProgressBar(this, null, android.R.attr.progressBarStyleHorizont
Update
In newer versions of Android (21 works), you can change the color of a progressbar programmatically by just using setProgressTintList.
setProgressTintList
To set it red, use:
//bar is a ProgressBar bar.setProgressTintList(ColorStateList.valueOf(Color.RED));