So I\'ve checked the other questions to hide a progress bar but all seem to suggest doing what I\'m already doing.
I\'m trying to use
mProductListProgres
A solution that worked for me was to hide the view in XML:
android:visibility="gone"
and then unhide/hide it at runtime when needed:
yourProgressBar.setVisibility(View.VISIBLE) // or View.VISIBLE depending on situation