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
I know that it is an old question. But I just spent a lot of time debugging similar situation. I could not hide ProgressBar on top of unityPlayer view.
One more thing to ensure is that You are hiding it while in UI thread.
To ensure surround Your UI code with:
runOnUiThread(new Runnable() {
@Override
public void run() {
loadingIndicator.setVisibility(View.GONE);
}
});