I have ProgressBar style in style.xml. When I create layout, put there ProgressBar and set style like:
style=\"@style/ProgressBarStyle\"
set la
You can set your style from the constructor, for instance:
progressBar = new ProgressBar(activity, null, android.R.attr.progressBarStyleSmall);
Where the third attribute is the style.
In your case, I think the error is to choose a wrong one. Just this.