I have a progressBar using the ProgressBar class.
Just doing this:
progressBar = new ProgressBar(this, null, android.R.attr.progressBarStyleHorizont
It is possible to colorize the Progress bar by setting the color filter on the progress bar drawable:
Drawable drawable = progressBar.getProgressDrawable(); drawable.setColorFilter(new LightingColorFilter(0xFF000000, customColorInt));